About 7,610,000 results
Open links in new tab
  1. How to upgrade Git on Windows to the latest version

    To update to the latest version of Git and Git Bash, you can download and install the latest version of Git for Windows. As per this FAQ, settings/customizations should be preserved if they were …

  2. Updating a local repository with changes from a GitHub repository

    Apr 9, 2019 · I've got a project checked locally from GitHub, and that remote repository has since had changes made to it. What's the correct command to update my local copy with the latest …

  3. How do I update or sync a forked repository on GitHub?

    Jul 8, 2016 · I forked a project, made changes, and created a pull request which was accepted. New commits were later added to the repository. How do I get those commits into my fork?

  4. Pull latest changes for all git submodules - Stack Overflow

    For git 1.7.3 or above you can use (but the below gotchas around what update does still apply): git submodule update --recursive or: git pull --recurse-submodules if you want to pull your …

  5. git - update my repository on github - Stack Overflow

    Jan 20, 2018 · I just went up to github the project that was working locally on my computer. everything went well and I could upload all my files .. now I would like to know how I can …

  6. How to update a GitHub access token via command line

    Dec 9, 2021 · 58 If you want to update your GitHub Personal Access Token in VSCode, you can install the GitHub Extension. You can also update your token via the command line. Note that …

  7. Changing the Git user inside Visual Studio Code - Stack Overflow

    Generally, Visual Studio Code uses the GitHub credentials from the system's credential manager. It doesn't store it anywhere in the settings. As question says, Changing the Git user inside …

  8. How to update a Github cloned repository? - Stack Overflow

    Sep 17, 2020 · I have created a repository on Github, and the cloned from my local machine and also push some code. I cloned that repository from a virtual online machine with the repository …

  9. git - Update a submodule to the latest commit - Stack Overflow

    May 28, 2019 · git submodule update --remote --merge This will update the submodule to the latest remote commit. You will then need to add and commit the change so the gitlink in the …

  10. Update Git submodule to latest commit on origin

    Apr 29, 2011 · cd .. git add mod git commit -m "Updating the submodule 'mod' to the latest version" Now push your new version of the main project: git push origin master From this point …