About 12,400,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. git - Updating a local repository with changes from a GitHub …

    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. Git update submodules recursively - Stack Overflow

    452 My project struture ProjectA -FrameworkA (submodule) --Twig (submodule of FrameworkA) How I can update submodules recursively? I already tried some git commands (on ProjectA …

  4. How to only update specific git submodules? - Stack Overflow

    Mar 3, 2018 · So, updating all my submodules is done by running git submodule foreach 'git pull origin master' How do I update a specific submodule, located in say bundle/syntastic, without …

  5. git - How do I change the author and committer name/email for …

    Question: does using git filter-branch preserve the SHA1's for previous tags, versions and objects? Or will changing the author name force change the associated SHA1's as well?

  6. How to upgrade Git to latest version on macOS? - Stack Overflow

    Jan 22, 2012 · Then check git version to confirm. git --version If the output of the above command shows the latest version and does not mention Apple with the version details, then you are all …

  7. git - How do I modify a specific commit? - Stack Overflow

    I have the following commit history: HEAD HEAD~ HEAD~2 HEAD~3 git commit --amend modifies the current HEAD commit. But how do I modify HEAD~3?

  8. 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 …

  9. git extensions - update git via cmd? - Stack Overflow

    Mar 14, 2019 · Yes there is. Use the command: git update-git-for-windows in your cmd and press Y and will update it. Example: PS: I don't have any admin control. It's my company computer, …

  10. Git submodule update - Stack Overflow

    If you do an initial submodule update, commit in that submodule directory without creating a branch to work in, and then run git submodule update again from the superproject without …