Tagged Questions
671
votes
35answers
115k views
Git for beginners: The definitive practical guide [closed]
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 beginner's practical guide to Git. "Beginner" being defined as someone who knows how to ...
532
votes
23answers
95k 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, ...
485
votes
20answers
89k views
Undo git add before commit
I mistakenly added files using the command
git add file
I have not yet run git commit.
Is there a way to undo this or remove these files from the commit?
368
votes
8answers
185k views
How do I fix merge conflicts in Git?
Is there a good way to explain how to resolve merge conflicts in Git?
269
votes
8answers
18k 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 ...
168
votes
12answers
49k views
How do I tell Git to ignore “.gitignore”?
I just did a git init on the root of my new project.
Then I created a .gitignore file.
Now, when I type "git status", ".gitignore" appears in the list of untracked files. Why is that?
163
votes
8answers
36k views
git workflow and rebase vs merge questions
I've been using git now for a couple months on a project with one other developer. I have several years of experience with svn, so I guess I bring a lot of baggage to the relationship.
I have heard ...
158
votes
9answers
75k views
What GUIs exist for Git on Windows
I use Subversion via TortoiseSVN but I hear good things about Git.
Are there any similar tools available for Git on Windows?
Feel free to answer with tools which still in early development.
157
votes
6answers
49k views
How do you get git to always pull from a specific branch?
I'm not a git master, but I have been working with it for some time now, with several different projects. In each project, I always git clone [repository] and from that point, can always git pull, so ...
151
votes
12answers
42k views
How do I change the author of a commit in git?
I was writing a simple script in the school computer, and commiting the changes to git (in a repo that was in my pendrive, cloned from my computer at home). After several commits I realized I was ...
146
votes
9answers
38k views
Git ignore file for Xcode projects
Which files should I include in .gitignore when using Git in conjunction with Xcode?
142
votes
20answers
112k views
Best visual client for Git on Mac OS X? [closed]
I'm looking for a nice, Mac OS X-like, client for Git. As an example, I use Versions for Subversion and it's exactly what I'd like to purchase for Git access. Suggestions?
140
votes
10answers
28k 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.
139
votes
2answers
12k views
Git: Move recent commit to a new branch
I'd like to move the last several commits I've made to master to a new branch and take master back to before those commits were made. Unfortunately, my Git-fu isn't strong enough yet, any help?
I.e. ...
135
votes
12answers
36k views
How to migrate SVN with history to a new Git repository?
I read git manual, FAQ, Git - SVN crash course, etc. and they all explain this and that, but nowhere can you find a simple instruction like:
SVN repository in: svn://myserver/path/to/svn/repos
Git ...
128
votes
3answers
27k views
Differences in git branches
I want to merge two branches that have been separated for a while and wanted to know which files have been modified.
Came across this link: http://linux.yyz.us/git-howto.html which was quite useful.
...
123
votes
24answers
84k views
What is the best Git GUI on OSX? [closed]
What is the best GUI on OSX for viewing a Git repository, and (optionally) manipulating it?
116
votes
5answers
50k views
How do I reset/revert a specific file to a specific revision using Git?
I have made some changes to a file which has been committed in a few times as part of a group of files, but now want to reset/revert the changes on it back to a previous version.
I have done a git ...
109
votes
4answers
19k views
What does git do to files that are a symbolic link?
If I have a file or directory that is a symbolic link and I commit it to a git repo what happens to it?
I would assume that it leaves it as a symbolic link until the file is deleted and then if you ...
109
votes
16answers
8k 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, ...
102
votes
13answers
44k views
Can git be integrated with Xcode?
Is there any way to use a git repository with the built in SCM functions of Xcode?
99
votes
9answers
52k views
Aborting a merge in Git
I've done 'git pull', and received a merge conflict. I know that the other version of the file is good, and that mine is bad (all my changes should be abandoned). How do I do this?
unmerged: ...
95
votes
22answers
78k views
Svn vs Git [closed]
I am starting a new distributed project where some of the developers will not be in the same country... What should I use: Git or SVN?
Why?
PS. It is a smart client application running on windows ...
87
votes
6answers
31k views
Managing large binary files with git
I am looking for opinions of how to handle large binary files on which my source code (web application) is dependent. We are currently discussing several alternatives:
Copy the binary files by hand.
...
87
votes
13answers
32k views
git-upload-pack: command not found, how to fix this correctly
I have been using git to keep two copies of my project in sync, one is my local box, the other the test server.
This is an issue which occurs when I log onto our remote development server using ssh;
...
85
votes
6answers
3k views
How and/or why is merging in Git better than in SVN?
I've heard a few places that one of the main ways distributed version control systems shine, is much better merging than traditional tools like SVN.
Is this actually due to inherent differences in how ...
85
votes
7answers
52k views
Rollback File to much earlier version
Is there a way in Git to rollback to a much earlier version of a file? I can roll back to the previous version with REVERT, but what if i want to go back to earlier versions? Whats the best workflow ...
84
votes
12answers
54k views
Git plugin for eclipse
I was intending to have a play with git, and was wondering if anyone had used the git plugin for eclipse
I see it's at version 0.3.1, and was wondering if anyone knew how stable it was / any gotchas?
...
81
votes
7answers
18k views
.gitignore file not ignoring
I have an already initialized git repo that I added a .gitignore file to, how can I refresh the file index so the files I want ignored get ignored?
78
votes
5answers
28k views
How do I revert one file to the last commit in git?
I have a git repository, After the last commit, I modified a bunch of file. but I want to undo the changes to one of these file, as in reset it to the same version of itself that's in the repository, ...
77
votes
10answers
39k views
What's the best Web interface for Git repositories?
I've been using Git for a bit now (hosting my own) and would love to have something like GitHub that I could setup for my own repos. I've seen GitWeb, but I just don't like using it all that much. ...
75
votes
2answers
20k views
git rebase vs git merge
When does one use git rebase vs git merge?
Does one still need to merge after a successful rebase?
73
votes
6answers
15k views
How do you merge two git repositories?
Consider the following scenario: I have developed small experimental project A in its own git repo. It has now matured, and I'd like A to be part of larger project B, which has its own big repository. ...
73
votes
6answers
29k views
How do I push amended commit to the remote git repo?
When I've worked a bit with my source code, I do my usual thing commit and then I push to a remote repo. But then I noticed I forgot to organize my imports in the source code. So I do the amend ...
72
votes
4answers
6k views
Merging: Hg/Git vs. SVN
I often read that Hg (and Git and...) are better at merging than SVN but I have never seen practical examples of where Hg/Git can merge something where SVN fails (or where SVN needs manual ...
68
votes
9answers
28k views
Popularity of Git/Mercurial/Bazaar vs. which to recommend
Going by the number of questions on this site for these three distributed version control systems, it seems like Git either
is more popular, or
is more difficult (hence requiring more questions), ...
68
votes
3answers
14k views
git-svn: how do I create a new svn branch via git?
I have a git repository which tracks an svn repository. I cloned it using --stdlayout.
I created a new local branch via git checkout -b foobar
Now I want this branch to end up in …/branches/foobar ...
64
votes
15answers
35k views
What's the best visual merge tool for Git?
Title says it. What's the best tool for viewing and editing a merge in Git? I'd like to get a 3-way merge view, with "mine", "theirs" and "output" in separate panels.
Also, instructions for invoking ...
63
votes
3answers
22k views
How to revert all local changes in a GIT managed project to previous state?
This is probably the simplest newbie question.
I have a project in which I've run git init.
After several commits, I do a git status which tells me everything is up to date and there are no local ...
62
votes
2answers
17k views
Undo git pull, how to bring repos to old state
Is there any way to revert or undo git pull so that my source/repos will come to old state that was before doing git pull ?
I want to do this because it merged some files which I didn't want to do so, ...
61
votes
7answers
64k views
Git: Remove file accidentally added to the repository
I had a conflict in a merge. Git creates filename.orig and filename.remote when a conflict happens. I resolved the conflict, but somehow filename.orig got added to the repository several commits ago ...
60
votes
5answers
12k views
How to retrieve the hash for the current commit in Git?
I'm currently busy migrating away from the versioncontrol part of Team Foundation Server to Git. (Why I'm migrating away is a different story ;^) However, I would like to retain (for now) the ability ...
59
votes
4answers
8k views
Should Gemfile.lock be included in .gitignore?
I'm sort of new to bundler and the files it generates. I have a copy of a git repo from github that is being contributed to by many people so I was surprised to find that bundler created a file that ...
59
votes
7answers
28k views
git: how to squash the first two commits?
With git rebase --interactive <commit> you can squash any number of commits together into a single one. It's an OCD heaven.
And that's all great unless you want to squash commits into the ...
58
votes
6answers
7k views
Why is branching and merging easier in Mercurial than in Subversion?
Handling multiple merges onto branches in Subversion or CVS is just one of those things that has to be experienced. It is inordinately easier to keep track of branches and merges in Mercurial (and ...
55
votes
14answers
5k views
Best Version control for lone developer
I'm a lone developer at the moment; please share you experiences on what is a good VC setup for a lone developer.
My constraints are;
I work on multiple machines and need to keep them synced up
...
52
votes
5answers
8k views
Git interoperability with a Mercurial Repository
I use GIT on a Mac. Enough said. I have the tools, I have the experience. And I want to continue to use it. No wars here...
The problem is always with interoperability. Most people use SVN, which is ...
52
votes
37answers
4k views
Getting started with Version Control
I need to implement version control, even for just the developing I do at home. I have read about how great Subversion is for the past couple years and was about to dedicate myself to learning this ...
51
votes
5answers
7k views
How to split last commit into two in Git
I have two working branches, master and forum and I've just made some modifications in forum branch, that I'd like to cherry-pick into master. But unfortunately, the commit I want to cherry-pick also ...
42
votes
11answers
16k views
examining history of deleted file
If I delete a file in Subversion, how can I look at it's history and contents? If I try to do svn cat or svn log on a nonexistent file, it complains that the file doesn't exist.
Also, if I wanted to ...