About 17,300,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. 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 - 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?

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

  7. Changing git commit message after push (given that no one …

    Jan 24, 2012 · Step1: git rebase -i HEAD~n to do interactive rebase for the last n commits affected. (i.e. if you want to change a commit message 3 commits back, do git rebase -i …

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

  9. 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?

  10. How to add chmod permissions to file in Git? - Stack Overflow

    Sep 5, 2022 · According to official documentation, you can set or remove the "executable" flag on any tracked file using update-index sub-command. To set the flag, use following command: git …