About 67 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 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, …

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

    May 28, 2019 · git submodule update only works without flags when a commit has been pulled (in proj B) that updates the refs to the submodule (s) in question (proj A). To update proj B to …

  5. git - How to update local repository - Stack Overflow

    Dec 30, 2020 · git pull else if you want to update a specific branch you can use git pull origin <branch_name> replace <branch_name> with your branch The git pull command first runs git …

  6. How do I force "git pull" to overwrite local files?

    Jul 14, 2009 · How do I force an overwrite of local files on a git pull? My local repository contains a file of the same filename as on the server. error: Untracked working tree file 'example.txt' …

  7. git: how to rename a branch (both local and remote)?

    When you use the git branch -m (move), Git is also updating your tracking branch with the new name. git remote rename legacy legacy git remote rename is trying to update your remote …

  8. How do I change the URI (URL) for a remote Git repository?

    I had to do this on an old version of git (1.5.6.5) and the set-url option did not exist. Simply deleting the unwanted remote and adding a new one with the same name worked without …

  9. git - How to update local repo with master? - Stack Overflow

    Nov 18, 2014 · Then update your local branch with the remote branch: git pull origin branchname (This is the branch name with asterisks) Now you can push your code to the remote repository …

  10. How do I update an expired/revoked Personal Access Token (PAT) …

    Jul 24, 2024 · How do I update an expired/revoked Personal Access Token (PAT) in git cli Asked 1 year, 6 months ago Modified 4 months ago Viewed 13k times