About 5,730,000 results
Open links in new tab
  1. Authenticate with GitHub using a token - Stack Overflow

    That will fix your project to use a remote with credentials built in. Warning: Tokens have read/write access and should be treated like passwords. If you enter your token into the clone URL when …

  2. github - How do I get git to default to ssh and not https for new ...

    Jun 26, 2012 · That tells git to always use SSH instead of HTTPS when connecting to GitHub/BitBucket, so you'll authenticate by certificate by default, instead of being prompted for …

  3. git - Configuring diff tool with .gitconfig - Stack Overflow

    git config --global diff.tool tkdiff git config --global merge.tool tkdiff git config --global --add difftool.prompt false The first two lines will set the difftool and mergetool to tkdiff - change that …

  4. How to use git (git config --global)? - Stack Overflow

    git config --global user.email "[email protected]" I guess the reason it complains about the lack of a section is that the name of the parameter to set probably needs to be in two parts: …

  5. vim - How do I make git use the editor of my choice for editing …

    How do I globally configure git to use a particular editor (e.g. vim) for commit messages?

  6. git - How to change line-ending settings - Stack Overflow

    Is there a file or menu that will let me change the settings on how to deal with line endings? I read there are 3 options: Checkout Windows-style, commit Unix-style Git will convert LF to CRLF …

  7. git - how to use Personal access token to clone, pull, and push a …

    Jun 30, 2021 · Personal access tokens can only be used for HTTPS Git operations. If your repository uses an SSH remote URL, you will need to switch the remote from SSH to HTTPS.

  8. How to configure command line git to use ssh key

    May 8, 2014 · 84 When I do git pull via the command line, it always asks for my github username and password. I'd like to tell it to use the ssh key in github, and never have to worry about it …

  9. Configuring user and password with Git Bash - Stack Overflow

    I am using Git Bash on Windows 7. We are using GitHub as our repository origin. Every time I push or pull I have to provide user and password credentials. I know that my SSH keys are set …

  10. Setting up and using Meld as your Git difftool and mergetool

    Aug 4, 2024 · 673 How do I set up and use Meld as my Git difftool? git difftool displays the diff using a GUI diff program (i.e., Meld) instead of displaying the diff output in your terminal. …