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

learn more… | top users | synonyms | git jobs

185
votes
2answers
58k 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, ...
185
votes
10answers
34k views

Pushing an existing git repository to SVN

I've been doing all my work in Git and pushing to GitHub. I've been very happy with both the software and the site and I have no wish to change my working practices at this point. My PhD adviser is ...
184
votes
7answers
125k 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? What's the best workflow ...
184
votes
22answers
55k 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 ...
183
votes
8answers
51k views

How do I make git use the editor of my choice for commits?

For example, I would prefer to write my commit messages in vim, but it is opening emacs. How do I configure git to always use vim instead? Note that I want to do this globally, not just for a single ...
182
votes
11answers
50k views

How Can I Remove .DS_Store Files From A Git Repository?

How can I remove those annoying Mac OS X .DS_Store files from a Git repository?
182
votes
12answers
32k views

How do you copy and paste into Git Bash

I'm using msysgit running on Windows XP. Tried Ctrl+V, Right click, Middle click, google... no luck.
177
votes
4answers
61k views

Change the current branch to master in git

I have a repository in git. I made a branch, then did some changes both to the master and to the branch. Then, tens of commits later, I realized the branch is in much better state than the master, so ...
175
votes
13answers
90k views

How can I find the location of origin/master in git, and how do I change it?

I'm a Git newbie. I recently moved a Rails project from Subversion to Git. I followed the tutorial here: ...
174
votes
4answers
33k views

Can you explain what “git reset” does in plain english?

I have seen interesting posts explaining subtleties about git reset. Unfortunately, the more I read about it, the more it appears that I don't understand it fully. I come from a SVN background and ...
174
votes
7answers
41k views

What's the best CRLF handling strategy with git?

I tried committing files with CRLF-ending lines but it failed. I spent a whole work day on my Windows computer trying different strategies, and was almost drawn to stop trying to use git and instead ...
172
votes
8answers
51k views

Import existing source code to github

how can I import source code from my computer to my github account?
169
votes
17answers
129k views

SSL certificate rejected trying to access GitHub over HTTPS behind firewall

I'm stuck behind a firewall so have to use HTTPS to access my GitHub repository. I'm using cygwin 1.7.7 on Windows XP. I've tried setting the remote to ...
165
votes
4answers
15k views

How do you attach a new pull request to an existing issue on github?

I'm not sure, but I have a vague memory of creating a github pull request with "Issue 4" or something in the title, and it automatically attached itself to Issue 4 in the project that I was submitting ...
162
votes
4answers
55k views

How to retrieve a single file from specific revision in Git?

I have a Git repository and I'd like to seem how some file looked a few months ago. I found the revision at that date, it's: 27cf8e84bb88e24ae4b4b3df2b77aab91a3735d8. I need to see what did one file ...
162
votes
2answers
94k views

How to merge a specific commit in git

I have forked a branch from a repository it github and commit something for my using. now I found the original repository has a good feature which is at head, I want to merge it only without previous ...
161
votes
4answers
36k views

How to have git log show filenames like svn log -v

SVN's log has a "-v" mode that outputs filenames of files changed in each commit, like so: jes5199$ svn log -v ------------------------------------------------------------------------ r1 | jes5199 ...
161
votes
5answers
23k 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 ...
161
votes
1answer
24k views

How to list branches that contain a given commit?

How can I query git to find out which branches contain a given commit? gitk will usually list the branches, unless there are too many, in which case it just says "many (38)" or something like that. I ...
160
votes
4answers
23k views

How do I copy a version of a single file from one git branch to another?

I've got two branches that are fully merged together. However, after the merge is done, I realise that one file has been messed up by the merge (someone else did an auto-format, gah), and it would ...
159
votes
2answers
20k views

What is the Sign Off feature in Git for?

What's the point of the Sign Off feature in Git? git commit --signoff When should I use it, if at all?
158
votes
3answers
58k views

git: undo all working dir changes including new files

How to delete all changes from working directory including new untracked files. I know that git checkout -f does that, but it doesn't delete new untracked files created since last commit. Does ...
158
votes
2answers
52k views

How to git-svn clone the last n revisions from a Subversion repository?

Problem How do you create a shallow copy with git-svn from a Subversion repository, i.e. how do you pull only the last three revisions? The git clone command can get the last n revisions from a Git ...
157
votes
13answers
97k views

What's the best Web interface for Git repositories? [closed]

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. ...
155
votes
6answers
68k 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 ...
154
votes
6answers
38k views

Shorthand for diff of git commit with its parent?

Aside from writing an alias or script, is there a shorter command for getting the diff for a particular commit? git diff 15dc8^..15dc8 If you only give the single commit id git diff 15dc8, it diffs ...
154
votes
6answers
35k views

How to `git clone` including submodules?

I'm trying to put a submodule into a repo. The problem is that when I clone the parent repo, the submodule folder is entirely empty. Is there any way to make it so that 'git clone parent' actually ...
153
votes
12answers
154k views

How do I pull from a Git repository through an HTTP proxy?

Note: while the use-case described is about using submodules within a project, the same applies to a normal git clone of a repository over HTTP. I have a project under Git control. I'd like to add a ...
152
votes
9answers
73k views

Revert to a commit by SHA hash?

I'm not sure why this doesn't make sense to me, I'm not clear on how git revert works. For example I want to revert to a commit (like 6 commits behind the head). Say its SHA hash is: ...
151
votes
7answers
109k views

Git: removing selected commit log entries for a repository

I would like to remove selected commit log entries from a linear commit tree, so that the entries do not show in the commit log. My commit tree looks something like: R--A--B--C--D--E--HEAD I would ...
150
votes
8answers
45k views

How can I determine the url that a local git repo was originally cloned from?

I pulled a project from github a few days ago. I've since discovered that there are several forks on github, and I neglected to note which one I took originally. How can I determine which of those ...
150
votes
5answers
55k views

Is there any way to clone a git repository's sub-directory only?

I have my git repo which, at the root, has two sub-dirs /finisht /static When this was in SVN, /finisht was checked out in one place, while /static was checked out elsewhere, like so: svn co ...
146
votes
6answers
67k views

How to reset my local repository to be just like the remote repository HEAD

How do I reset my local repository to be just like the remote repository HEAD? I did: git reset -hard HEAD^ But when I do a git status, On branch master Changes to be committed: (use "git reset ...
145
votes
5answers
26k views

Rename a tag in git?

Today I was looking through the logs for a project and realized that I fat fingered a tag name some time ago. Is there some way to rename the tag? Google hasn't turned up anything useful. I realize I ...
145
votes
5answers
23k views

Definition of “downstream” and “upstream”

I've started playing with Git and have come across the terms "upstream" and "downstream". I've seen these before but never understand them fully. What do these terms mean in the context of SCMs and ...
144
votes
5answers
27k views

When should I use git pull --rebase?

I know of some people who use git pull --rebase by default and others who insist never to use it. I believe I understand the difference between merging and rebasing, but I'm trying to put this in the ...
141
votes
4answers
27k views

How can I view a git log of just one user's commit's?

When using 'git log' how can I filter by user so that I see only commits from that user?
141
votes
12answers
101k 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? ...
139
votes
7answers
67k views

Undoing a git push

Here's what I did on my supposed-to-be-stable branch... % git rebase master First, rewinding head to replay your work on top of it... Fast-forwarded alpha-0.3.0 to master. % git status # On branch ...
139
votes
4answers
40k views

Is it possible to move/rename files in git and maintain their history?

I would like to rename/move a project subtree in git moving it from '/project/xyz' to '/components/xyz' If I use a plain 'git mv project components' then all the file history for the xyz project ...
139
votes
9answers
60k 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 ...
138
votes
4answers
54k views

How to apply `git diff` patch without Git installed?

How can my client apply patch created by git diff without git installed? I have tried to use patch command but it always asks file name to patch.
138
votes
2answers
37k views

Change commit author at one specific commit

I want change author at one specific commit in history. It's not last commit. I know about this question - How do I change the author of a commit in git? But I thinking about something, where I ...
138
votes
2answers
58k views

Git Cherry-pick vs Merge Workflow

Assuming I am the maintainer of a repo, and I want to pull in changes from a contributor, there are a few possible workflows: I cherry-pick each commit from the remote (in order). In this case git ...
137
votes
4answers
42k views

Best way to use multiple SSH private keys on one client

I'm working on Ubuntu and want to use multiple private keys to connect to different servers or different portions of the same server (My uses are admin of server, admin of git, and normal git usage ...
137
votes
7answers
64k views

git replacing LF with CRLF

Running git on a Windows XP machine, using bash. I exported my project from SVN, and then cloned a bare repository. I then pasted the export into the bare repositories directory, and did a: git add ...
136
votes
3answers
20k views

How to undo “git commit --amend” done instead of “git commit”

I accidentally amended my previous commit. The commit should have been separate to keep history of the changes I made to a particular file. Is there a way to undo that last commit? If I do something ...
135
votes
14answers
44k views

Pretty git branch graphs

I've seen some books and articles have some really pretty looking graphs of git branches and commits. Is there any tool that can make high-quality printable images of git history?
134
votes
14answers
65k views

What's the best visual merge tool for Git? [closed]

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 ...
133
votes
6answers
23k 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 ...

1 2 3 4 5 564