Git is an open-source DVCS (Distributed Version Control System).

learn more… | top users | synonyms | git jobs

3056
votes
17answers
429k views

How do I edit an incorrect commit message in Git?

I stupidly did a Git commit while half asleep, and wrote the totally wrong thing in the commit message. How do I change the commit message? I have not yet pushed the commit to anyone.
2660
votes
15answers
635k views

How to undo the last Git commit?

I accidentally added the wrong directory containing my files in Git. Instead of adding a .java file, I added the directory containing the .class file. How can I undo this action?
1693
votes
14answers
340k views

What's the difference between 'git pull' and 'git fetch'?

What's the difference between git pull and git fetch?
1608
votes
11answers
438k 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 issued a pull request to the developer to incorporate my fix, but the developer decided to implement a different fix ...
1525
votes
25answers
283k 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?
1287
votes
16answers
328k views

How do I clone all remote branches with Git?

I have a master and a development branch, both pushed to GitHub. I've cloned, pulled, and fetched, but I remain unable to get anything other than the master branch back. I'm sure I'm missing ...
1224
votes
8answers
530k views

How do I fix merge conflicts in Git?

Is there a good way to explain how to resolve merge conflicts in Git?
1057
votes
11answers
125k views

How do I remove a Git submodule?

How do I remove a Git submodule? And by the way, is there a reason I can't simply do git submodule rm whatever ?
1025
votes
10answers
186k 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 ...
863
votes
19answers
182k 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 ...
826
votes
5answers
129k views

Removing untracked files from your git working copy

How do you delete untracked files from your git working copy?
815
votes
13answers
242k views

Using Git with Visual Studio

As a long-time Visual SourceSafe user (and hater) I was discussing switching to SVN with a colleague; he suggested using Git instead. Since, apparently, it can be used as peer-to-peer without a ...
720
votes
17answers
131k 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?
650
votes
5answers
260k 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. ...
632
votes
12answers
63k 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 ...
614
votes
10answers
143k 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 ...
590
votes
15answers
213k 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 ...
584
votes
6answers
96k views

How do I commit all deleted files in Git? [duplicate]

Possible Duplicate: Removing multiple files from a Git repo that have already been deleted from disk If I delete some files from the disk they come up as deleted like so in the Git repo: ...
547
votes
23answers
293k views

Force git to overwrite local files on pull

How do I force an overwrite of local files on a git pull? The scenario is following: a team member is modifying the templates for a website we are working on he is adding some images to the images ...
520
votes
13answers
106k views

Using Git and Dropbox together effectively?

Is there a good tutorial where I can learn using Git and Dropbox together effectively?
502
votes
4answers
54k views

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. ...
500
votes
9answers
220k views

git checkout remote branch

I am trying to checkout a remote branch: Somebody pushed a branch called test with git push origin test to a shared repository. I can see the branch with git branch -r. But how can I get this branch? ...
494
votes
12answers
203k 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?
492
votes
9answers
221k views

How to delete a “git commit” ?

I would like to know how to delete a git commit. By "delete" I mean it is as if I did not do that commmit and when I do a git push in the future, my changes will not push to the remote branch. I read ...
479
votes
15answers
185k views

Undo a Git 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 ...
473
votes
3answers
157k 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?
468
votes
17answers
131k 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 ...
468
votes
4answers
254k views

GIT revert to previous commit… how?

If I do "git log" and get the following output: [root@me dev]# git log commit a867b4af366350be2e7c21b8de9cc6504678a61b` Author: Me Date: Thu Nov 4 18:59:41 2010 -0400 blah blah blah... commit ...
467
votes
7answers
114k views

Showing which files have changed between 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. ...
456
votes
4answers
74k 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 ...
434
votes
14answers
90k 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?
425
votes
8answers
74k 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 ...
419
votes
15answers
99k 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 ...
416
votes
15answers
141k views

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 ...
414
votes
16answers
184k views

Git GUI client for Linux [closed]

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 ...
408
votes
4answers
147k 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 ...
407
votes
10answers
79k 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 ...
403
votes
1answer
43k views

Move existing, uncommited work to a new branch in Git

I started some work on a new feature and 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 ...
402
votes
18answers
110k 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 one of my machines to another, How can I 'git clone' from another machine?. I am now able to successfully clone a Git repository ...
394
votes
28answers
71k views

Permission denied (publickey) when deploying heroku code. fatal: The remote end hung up unexpectedly

I'm attempting to deploy my code to heroku with the following command line: git push heroku master but get the following error: Permission denied (publickey). fatal: The remote end hung up ...
382
votes
10answers
26k 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 ...
366
votes
15answers
59k 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 # ...
357
votes
14answers
90k 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?
354
votes
14answers
84k views

Git ignore file for Xcode projects

Which files should I include in .gitignore when using Git in conjunction with Xcode?
350
votes
3answers
57k views

Git: Remove a file from the repository without deleting it from the local filesystem

My initial commit contained some log files. I've added *log to my .gitignore, and now I want to remove the log files from my repository. git rm mylogfile.log will remove a file from the repository, ...
345
votes
2answers
47k views

How do I rename a local Git branch?

I do not want to rename a remote branch, I want to rename a local one. What is the simplest way to rename a local branch without worrying about the remote?
342
votes
10answers
223k views

git push current branch

I use the following command to push to my remote branch: git push origin sandbox If I say git push origin Does that push changes in my other branches too, or does it only update my current ...
342
votes
8answers
27k views

How can I commit only part of a file in git

When I commit changes to a file in git, how can I commit only some of the changes? Example: commit only 15 lines out of 30 changed lines.
332
votes
10answers
46k views

.gitignore for Visual Studio Projects and Solutions

Which files should I include in .gitignore when using Git in conjunction with Visual Studio Solutions (.sln) and Projects? Community Wiki: #OS junk files [Tt]humbs.db *.DS_Store #Visual Studio ...
330
votes
8answers
170k 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 ...

1 2 3 4 5 563