About 10,700,000 results
Open links in new tab
  1. How can I find out what version of git I'm running?

    Dec 12, 2011 · I'm trying to follow some tutorials to learn how to use Git but some of the instructions are for specific versions. Is there a command that I can use find out what version I …

  2. Error "'git' is not recognized as an internal or external command"

    I have an installation of Git for Windows, but when I try to use the git command in Command Prompt, I get the following error: 'git' is not recognized as an internal or external command, …

  3. How to manage the version number in Git? - Stack Overflow

    adds a version tag of v1.5.0-beta to your current Git repository. Every new commit after this will auto-increment tag by appending commit number and commit hash.

  4. How to upgrade Git on Windows to the latest version

    I just upgraded to Git 1.8.0.1 for Windows, from my previous version 1.7.9.mysysgit.0. I downloaded the new version from the Git site and installed through the normal Git installer …

  5. git - How to revert to origin's master branch's version of file

    May 24, 2016 · I'm in my local computer's master branch of a cloned master-branch of a repo from a remote server. I updated a file, and I want to revert back to the original version from the …

  6. git - Go to a particular revision - Stack Overflow

    Sep 24, 2011 · Before executing this command, keep in mind that it will leave you in a detached head state. Use git checkout <sha1> to check out a particular commit. Where <sha1> is the …

  7. version control - How can I switch to another branch in Git?

    Dec 4, 2017 · Switching to another branch in Git. Straightforward answer, git-checkout - Switch branches or restore working tree files git fetch origin # <---- This will fetch the branch git …

  8. git - Finding diff between current and last version - Stack Overflow

    Mar 28, 2012 · Using Git, how can you find the difference between the current and the last version? git diff last version:HEAD

  9. version control - 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' …

  10. git - Get current version of repository - Stack Overflow

    Feb 29, 2016 · Get the last version of a repository (online) I can only compare the two, but it doesn't give me any information about the version. : git status, just tell me it's up to date.