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

learn more… | top users | synonyms | git jobs

315
votes
16answers
125k views

How do I view 'git diff' output with a 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?
310
votes
3answers
91k views

Removing a file from Git source control but not from the source

I have cloned a project that includes some .csproj files. I don't need/like my local csproj files being tracked by Git (or being brought up when creating a patch), but clearly they are needed in the ...
307
votes
13answers
151k views

What GUIs exist for Git on Windows [closed]

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.
305
votes
13answers
111k 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: ...
298
votes
6answers
125k views

How to fully delete a git repository created with init?

I created a git repository with git init. I'd like to delete it entirely and init a new one.
291
votes
8answers
98k 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 ...
289
votes
11answers
228k views

How do you clone a git repository into a specific folder?

Executing the command git clone git@github.com:whatever creates a directory in my current folder named whatever, and drops the contents of the git repo into that folder: /httpdocs/whatever/public ...
288
votes
2answers
38k 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?
287
votes
9answers
68k 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.
287
votes
3answers
76k views

How can I remove a commit on github?

I "accidentally" pushed a commit to github. Is it possible to remove this commit? I want to revert my github repository as it was before this commit.
286
votes
4answers
71k views

How to modify a specified commit?

I usually submit a list of commits for review, so I have a problem: If I have commit1, commit2, commit3, head. I know that I can modify head commit with git commit --amend, but how can I modify ...
276
votes
1answer
44k views

Why does git use fast-forward merging by default?

Coming from mercurial, I'm using branches to organize features. Naturally I want to see this work-flow in my history as well. I started my new project using git and finished my first feature. While ...
270
votes
7answers
39k views

How to stash only one file out of multiple files that have changed

How can I stash only one of multiple changed files on my branch?
266
votes
7answers
112k 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: ...
263
votes
7answers
34k views

Link to GitHub issue number with commit message?

Is it somehow possible to automatically have a link to GitHub issue number in the git commit message?
257
votes
3answers
73k views

How to change a remote repository URI using Git? [duplicate]

I have a repo (origin) on a USB key that I cloned on my hard drive (local). I moved "origin" to a NAS and successfully tested cloning it from here. I would like to know if I can change the URI of ...
251
votes
16answers
60k views

Deploy a project using Git push

Is it possible to deploy a PHP website using git push? 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 ...
245
votes
10answers
30k views

Recover dropped stash in git

I frequently use "git stash" and "git stash pop" to save and restore changes in my working tree. Yesterday I had some changes in my working tree that I had stashed and popped, and then I made more ...
243
votes
6answers
39k views

How to grep (search) committed code in the git history?

I have deleted a file or some code in a file sometime in the past. Can I grep in the content (not in the commit messages)? A very poor solution is to grep the log: git log -p | grep <pattern> ...
238
votes
6answers
73k 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. ...
237
votes
8answers
26k 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 ...
226
votes
9answers
48k views

Git - easy way pull latest of all submodules

We're using git submodules to manage a couple of large projects that have dependencies on many other libraries we've developed. Each library is a separate repo brought into the dependant project as ...
225
votes
7answers
181k views

Git: clone a specific branch [duplicate]

Possible Duplicate: How to clone a single branch in git? Git clone will behave copying remote current working branch into local. Is there any way to clone a specific branch by myself ...
224
votes
11answers
52k 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. ...
223
votes
3answers
21k views

.gitignore vs .gitkeep

What's the difference between .gitignore and .gitkeep? Are they the same thing with a different name, or do they both serve a different function? I don't seem to be able to find much documentation on ...
222
votes
9answers
95k views

Git checkout on a remote branch does not work

My problem is related to: Fatal Git error when switching branch I try to fetch a remote branch with the command git checkout -b local-name origin/remote-name but I get this error message: fatal: ...
221
votes
7answers
81k 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, ...
220
votes
3answers
100k 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 ...
219
votes
7answers
47k 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?
212
votes
7answers
65k views

How do you Remove an Invalid Remote Branch Reference from Git?

In my current repo I have the following output: $ git branch -a * master remotes/origin/master remotes/public/master I want to delete 'remotes/public/master' from the branch list: $ git branch ...
212
votes
15answers
107k views

Is there a free private Git repository? [closed]

Currently I use http://www.codaset.com/ for a private repository. It's free but it can't be free forever. Update: It is no longer online.. Codaset is nice git repo and we can write blog and wiki ...
211
votes
11answers
38k views

Viewing Unpushed Git Commits

How can I view any local commits I've made, that haven't yet been pushed to the remote repository? Occasionally, git status will print out that my branch is X commits ahead of origin/master, but not ...
208
votes
9answers
71k views

Rename remote Git branch

I have the branch master which tracks the remote branch origin/master. I want to rename them to master-old both locally and remote. Is that possible? For other users who tracked origin/master (and ...
205
votes
4answers
37k views

How do I show the changes which have been staged?

I staged a few changes to be committed; how can I see the diff of all files which are staged for the next commit? I'm aware of git status, but I'd like to see the actual diffs - not just the names of ...
205
votes
6answers
63k views

How do I clear my local working directory in git?

How can I clear my working directory in git?
202
votes
4answers
47k views

git: show all changed files between two commits

I have a bunch of commits in the repo. I want to see a list of files changed between two commits - from SHA1 to SHA2, what command should I use?
197
votes
22answers
155k views

Should I use SVN or Git? [closed]

I am starting a new distributed project. Should I use SVN or Git, and why?
196
votes
3answers
36k views

git branch, fork, fetch, merge, rebase and clone, what are the differences?

Can someone help me understand the difference between a branch, a fork and a clone in Git? Similarly what does it mean when I do a git fetch as opposed to a git pull. Also what does rebase mean in ...
193
votes
5answers
42k views

How to replace master branch in git, entirely, from another branch? [duplicate]

Possible Duplicate: Change the current branch to master in git I have two branch in my git repo: master seotweaks (created originally from master) I created "seotweaks" with the ...
187
votes
7answers
51k 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 ...
186
votes
13answers
76k views

src refspec master does not match any when pushing commits in git

I cloned my repository with: git clone ssh://xxxxx/xx.git but after I changed some files and add and commit them I want to push them to server: git add xxx.php git commit -m "TEST" git push ...
186
votes
4answers
40k views

Is there a quick git command to see an old version of a file?

Is there a command in git to see (either dumped to stdout, or in $PAGER or $EDITOR) a particular version of a particular file?
184
votes
38answers
20k views

What git features can help me be more productive? [closed]

Which git features or tricks, or even workflows help you to be productive? Please post one feature, trick, or workflow per answer.
183
votes
6answers
79k views

master branch and 'origin/master' have diverged, how to 'undiverge' branches'?

I'm kind of a git Noob and somehow I got my master and my origin/master branch to diverge. I actually don't want them to be diverged. How can I view these differences and 'merge' them?
182
votes
3answers
87k views

How do you roll back (reset) a git repository to a particular commit?

I cloned a git repository and then tried to roll it back to a particular changeset early on in the development process. Everything that was added to the repository after that point is unimportant to ...
182
votes
9answers
52k views

How to convert a git repository from normal to bare ?

How can I convert a 'normal' Git repository to a bare one? The main difference seems to be: in the normal git repository you have a .git folder inside the repository containing all relevant data ...
181
votes
21answers
53k views

How can I set up an editor to work with Git on Windows?

I'm trying out Git on Windows. I got to the point of trying "git commit" and I got this error: Terminal is dumb but no VISUAL nor EDITOR defined. Please supply the message using either -m or ...
181
votes
3answers
24k views

Branch from a previous commit using git

If I have n commits, how can I branch from the n-3 commit? I can see the hash of every commit.
178
votes
6answers
98k views

.gitignore - ignore any 'bin' directory

I have a directory structure like this: .git/ .gitignore main/ ... tools/ ... ... Inside main and tools, and any other directory, at any level, there can be a 'bin' directory, which I want to ...
177
votes
7answers
50k views

What is git HEAD, exactly?

You see the Git documentation saying things like "The branch must be fully merged in HEAD". But what is Git HEAD, exactly?

1 2 3 4 5 546