141
votes
27answers
11k views
Git for beginners: The definitive practical guide
Ok, after seeing this post by PJ Hyett, I have decided to skip to the end and go with git.
So what I need is a beginners practical guide to git. "Beginner" being defined as someone who knows how to …
95
votes
21answers
7k views
Why is git better than Subversion?
I've been using Subversion for a few years and after using SourceSafe, I just love Subversion. Combined with TortoiseSVN, I can't really imagine how it could be any better. Yet there's a growing …
58
votes
16answers
4k views
What are the relative strengths and weaknesses of Git, Mercurial, and Bazaar?
What do folks here see as the relative strengths and weaknesses of Git, Mercurial, and Bazaar?
In considering each of them with one another and against version control systems like SVN and Perforce, …
46
votes
8answers
12k views
Using Git with Visual Studio
As a long-time Visual SourceSafe user (& hater) I was discussing switching to SVN with a colleague; he suggested using Git instead, since apparently it can be used peer-to-peer without a central …
35
votes
39answers
3k views
Version Control. Getting started…
So I know I need to implement version control, even for just the developing I do at home. My issue is I have read about how great Subversion is for the past couple years. I was about to dedicate …
34
votes
8answers
1k views
Git and Mercurial - Compare and Contrast
For a while now I've been using subversion for my personal projects.
More and more I keep hearing great things about Git and Mercurial, and DVCS in general.
I'd like to give the whole DVCS thing a …
32
votes
8answers
6k views
How do I view ‘git diff’ output with visual diff program?
When I type 'git diff', I want to view the output with my visual diff tool of choice (SourceGear diffmerge on Windows). How do I configure git to do this?
31
votes
6answers
2k views
Detach subdirectory into separate git repository
I have a git repository which contains a number of subdirectories. Now I have found that one of the subdirectories is unrelated to the other and should be detached to a separate repository.
How can i …
31
votes
2answers
8k views
What’s the difference between git pull and git fetch?
What's the difference between git pull and git fetch?
30
votes
20answers
2k views
What are your favorite git features or tricks?
What are your favorite git features or tricks, or even workflows? Post one feature, trick, or workflow per answer.
25
votes
10answers
10k views
How to do a “git export” (like “svn export”)
I've been wondering whether there is a good "git export" solution that creates a copy of a tree without the .git repository directory. There are at least three methods I know of:
git clone followed …
24
votes
3answers
6k views
How do I edit an incorrect commit message in git
I stupidly did a git commit while half asleep, and wrote totally the wrong thing in the commit message, How do I change the commit message? I have not yet pushed the commit to anyone
24
votes
8answers
3k views
Undoing a git reset --hard HEAD~1
Is it possible to undo the changes caused by the following:
git reset --hard HEAD~1
?
If so, how?
Thanks.
23
votes
6answers
13k views
How Do I Fix Merge Conflicts in Git?
Do you know a good way to explain how to resolve merge conflicts in git?
23
votes
13answers
3k views
What is the Difference Between Mercurial and Git?
I've been using git for some time now on Windows (with msysGit) and I like the idea of distributed source control. Just recently I've been looking at Mercurial (hg) and it looks interesting. However, …
