Skip to content
View ddeveloperr's full-sized avatar
👨‍💻
Doist
👨‍💻
Doist
Block or Report

Block or report ddeveloperr

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. Test your ssh terminal connection wi... Test your ssh terminal connection with github account, (ssh authentication)
    1
    
                  
    2
    1. You mast have a public key from your mashine stored on github as SSH key here: 
    3
    https://github.com/settings/ssh
    4
    
                  
    5
    How to create ssh key on unix/mac os x:
  2. How to force “git push” to overwrite... How to force “git push” to overwrite remote repo files WITH LOCAL files
    1
    
                  
    2
    ### You want to push your local files to remote files
    3
    ```
    4
    git push -f <remote> <branch>
    5
    ```
  3. Netlify custom domain dns configurat... Netlify custom domain dns configuration with domain from namecheap
    1
    Please follow these steps to point your domain name from namecheap domain to the Netlify nameservers:
    2
    
                  
    3
    - Having logged into Namecheap account, go to your Domain List -> click 'Manage' next to the domain website.com -> locate the 'Nameservers' section;
    4
    - Choose ‘Custom DNS’ in the drop-down menu;
    5
    - Fill in your custom nameservers into empty lines;
  4. How to avoid Git push: username, pas... How to avoid Git push: username, password in my terminal ?
    1
    
                  
    2
    Problem: Every push prompt me to input username and password.
    3
    I would like to avoid it for every push, but how to configure to avoid it?
    4
    
                  
    5
    Answer: Using SSH authentication on terminal.