Git is an open-source DVCS (Distributed Version Control System)
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 ...
656
votes
6answers
127k 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
531
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, ...
490
votes
7answers
150k views
Git undo last commit
I accidentally added the wrong directory containing my files. Instead of adding a .java file, I added the directory containing the .class file. How can I undo this action?
482
votes
20answers
88k 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?
463
votes
11answers
142k views
How do I clone all remote branches with Git?
I have a master and a dev branch, both pushed to github, I've cloned, pulled, fetched, but I remain unable to get anything other than the master branch back.
I'm sure I'm missing something obvious, ...
437
votes
10answers
120k 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 ...
430
votes
7answers
103k views
What's the difference between git pull and git fetch?
What's the difference between git pull and git fetch?
387
votes
10answers
66k views
How do you make an existing git branch track a remote branch?
I know how to make a new branch that tracks remote branches. But how do I make an existing branch track a remote branch. I know I can just edit the .git/config file but it seems there should be an ...
367
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?
363
votes
15answers
83k 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 ...
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 ...
261
votes
9answers
26k 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 ...
248
votes
13answers
52k views
Using git+dropbox together effectively?
Is there a good tutorial where I can learn using git+dropbox together effectively?
245
votes
16answers
45k views
How do I add an empty directory to a git repository
How do I convince git that I really do want an empty directory?
244
votes
3answers
23k views
How do I remove a git submodule?
And by the way, is there a reason I can't simply git submodule rm whatever?
213
votes
8answers
75k views
View the change history of a file using Git versioning
How can I view the change history of an individual file in Git, complete with what has changed?
I have got as far as:
git log -- [filename]
which shows me the commit history of the file, but how ...
186
votes
4answers
45k views
Restore a deleted file in a Git repo
Say I'm in a Git repository. I delete a file and commit that change. I continue working and make some more commits. Then, I find I need to restore that file.
I know I can checkout a file using git ...
181
votes
3answers
56k views
Git how to create remote branch
I created a local branch which I want to 'push' upstream. There is a similar question here on Stackoverflow on how to track a newly created remote branch.
However, my workflow is slightly different. ...
172
votes
15answers
65k 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?
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
3answers
26k views
How do I delete a Git branch both locally and in Github?
I created a bugfix branch to fix a bug on a project that I had forked on Github. I gave a pull request to the developer to incorporate my fix, but the developer decided to implement a different fix ...
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 ...
162
votes
7answers
20k views
Removing multiple files from a Git repo that have already been deleted from disk
I have a Git repo that I have deleted four files from using rm (not git rm), and my Git status looks like this:
# deleted: file1.txt
# deleted: file2.txt
# deleted: file3.txt
# ...
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.
156
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 ...
155
votes
3answers
21k views
How do I make git ignore mode changes (chmod)?
I have a project in which I have to change the mode of files (chmod) to 777 while developing, but which should not change in the main repo.
git picks up on chmod -R 777 . and marks all files as ...
153
votes
38answers
14k views
What are your favorite git features or tricks? [closed]
What are your favorite git features or tricks, or even workflows? Post one feature, trick, or workflow per answer.
151
votes
9answers
45k views
git push error 'remote rejected] master -> master (branch is currently checked out)'
Yesterday, I posted a question on how to clone a git repository from 1 of my machine to another. How can I 'git clone' from another machine
I am now able to successfully clone a git ...
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 ...
150
votes
6answers
27k views
Undoing a git rebase
Does anybody know how to easily undo a git rebase?
The only way that comes to mind is to go at it manually:
git checkout the commit parent to both of the branches
then create a temp branch from ...
148
votes
17answers
62k views
Git GUI client for Linux
Which is the best gui client on Linux for Git.
Update: After checking out all of the GUIs mentioned here,
git cola seems to work well for committing/pushing
gitk seem to work the best for ...
145
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
111k 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
45k views
How do you merge selective files with git-merge?
I'm using git on a new project that has two parallel -- but currently experimental -- development branches:
master: import of existing codebase plus a few mods that I'm generally sure of
exp1: ...
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
10answers
53k views
How do you discard unstaged changes in git?
If some changes are added to the index and there are some changes that are not added to the index, how do I discard the changes in my working copy that are not added to the index yet?
138
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
35k 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 ...
134
votes
13answers
29k views
Deploy a project using Git
How can I deploy a PHP website using Git? I have a hunch it has something to do with using git hooks to perform a git reset --hard on the server side, but how would I go about accomplishing this?
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.
...
128
votes
5answers
67k views
How to use git to download a particular tag?
I'm trying to figure out how do download a particular tag of a git repository - it's one version behind the current version.
I saw there was a tag for the previous version on the git web page, with ...
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?
121
votes
2answers
37k views
Difference of “git add -A” and “git add .”
The command git add [--all|-A] appears to be identical to git add .. Is this correct? If not, how do they differ?
119
votes
11answers
35k views
How do I list all the files for a commit in git
I need to write a script that retrieves all files that were committed for a given SHA1.
I have difficulty getting a nice formatted list of all files that were part of the commit.
I have tried:
git ...
119
votes
29answers
57k views
Best Git repository hosting for a commercial project?
Which Git hosting provider would you use for commercial development?
Edit: Let's not turn this question into a discussion of whether a hosting provider is really necessary for a distributed source ...
116
votes
1answer
11k views
Git: How to move existing work to new branch?
I started some work on a new feature. After coding for a bit I decided this feature should be on its own branch. How do I move the existing uncommitted changes to a new branch and reset my current ...
115
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 ...
114
votes
9answers
47k views
git: undo a merge?
Within my master branch, I did a git merge some-other-branch locally, but never pushed the changes to origin master. I didn't mean to merge, so I'd like to undo it. When doing a git status after my ...
111
votes
4answers
24k views
How do you remove untracked files from your git working copy?
How do you delete untracked files from your git working copy?