Git is an open-source DVCS (Distributed Version Control System).
learn more… | top users | synonyms | git jobs
100
votes
7answers
62k views
Handling file renames in git
I'd read that when renaming files in git, you should commit any changes, perform your rename and then stage your renamed file. Git will recognise the file from the contents, rather than seeing it as a ...
99
votes
6answers
22k views
Is git-svn dcommit after merging in git dangerous?
My motivation for trying out git-svn is the effortless merging and branching. Then I noticed that man git-svn(1) says:
"Running git-merge or git-pull is NOT recommended on a branch you plan to ...
99
votes
4answers
42k views
How to uncommit my last commit in git
How can I uncommit my last commit in git?
I have googled it.
Is it
git reset --hard HEAD
or
git reset --hard HEAD^
Thank you.
99
votes
4answers
71k views
Git fetch remote branch
My colleague and I are working on the same repository we've branched it into two branches each technically for different projects, but they have similarities so we'll sometimes want to commit back to ...
98
votes
4answers
25k views
Eclipse Android and gitignore
What files/folders can I safely ignore for inclusion with git?
I copied a good project, removed its gen and bin folders and tried to run the app. The Android Launch window says, "Your project ...
98
votes
5answers
54k views
How to get the changes on a branch in git
What is the best way to get a log of commits on a branch since the time it was branched from the current branch? My solution so far is:
git log $(git merge-base HEAD branch)..branch
The ...
97
votes
5answers
30k views
Git submodule head 'reference is not a tree' error
I have a project with a submodule that is pointing to an invalid commit: the submodule commit remained local and when I try to fetch it from another repo I get:
$ git submodule update
fatal: ...
97
votes
3answers
18k views
“Index file corrupt”
New git user.
After "git init", I added and committed a few files. Made some changes, added and committed. Set up the git daemon (running under Cygwin on WinXP) and cloned the repository once.
Now, ...
97
votes
6answers
44k views
Where does git config --global get written to?
Using the git config --global command to set things up, where is the file?
eg :
git config --global core.editor "blah"
Its not at these places :-
C:\Program Files\Git\etc\gitconfig
...
97
votes
5answers
15k views
Is it possible to have a subversion repository as a git submodule?
Is there a way to add a subversion repository as a git submodule in my git repository?
Something like: git-svn submodule add https://svn.foo.com/svn/proj --stdlayout svn-project
Where ...
96
votes
8answers
53k views
Ignoring directories in Git repos on Windows
How can I ignore directories or folders in Git using msysgit on Windows?
96
votes
6answers
19k views
What is the difference between a tag and a branch in git?
This is probably an easy question, but I'm having some difficulty understanding how to use tags vs. branches in git. If there's some documentation I should be reading, feel free to just point me to ...
96
votes
1answer
17k views
Undoing git reset?
What's the simplest way to undo the
git reset HEAD~
command?
Currently, the only way I can think of is doing a "git clone http://..." from a remote repo.
96
votes
3answers
17k views
Remove sensitive files and their commits from Git history
I would like to put a Git project on GitHub but it contains certain files with sensitive data (usernames and passwords, like /config/deploy.rb for capistrano).
I know I can add these filenames to ...
95
votes
4answers
23k views
How to push a new local branch to remote repo and track it too
I tried looking for a an answer to this, but couldn't find any which address this specific need. Which is weird.
I want to be able to do the following:
create a local branch based on some other ...
95
votes
5answers
28k views
Can “git pull --all” update all my local branches?
I often have at least 3 remote branches: master, staging and production. I have 3 local branches that track those remotes.
Updating all my local branches is tedious:
git fetch --all
git rebase ...
94
votes
3answers
50k views
git push tag -> master
I am trying to accomplish something that is probably very simple, though I cannot figure out how, or what I'm doing wrong. So to get straight to the point:
I want to push for example my tag 1.0.0 to ...
93
votes
5answers
30k views
Resolving a Git conflict with binary files
I've been using Git on Windows (msysgit) to track changes for some design work I've been doing.
Today I've been working on a different PC (brian) and am now trying to merge the edits done today back ...
93
votes
4answers
17k views
Hg: How to do a rebase like git's rebase
In Git I can do this:
1. Start working on new feature:
$ git co -b newfeature-123 # (a local feature development branch)
do a few commits (M, N, O)
master A---B---C
\
...
92
votes
5answers
22k views
Git: Finding what branch a commit came from
I'm pretty sure this isn't possible, but is there anyway to find out what branch a commit comes from given its sha1?
Bonus points if you can tell me how to accomplish this using grit. :)
91
votes
3answers
15k views
Removing files saying “old mode 100755 new mode 100644” from unstaged changes in git
For some reason, when I initially did a pull from the repository for a git project of mine.
I got a ton of files in my working copy that have no discernible changes made to them, but keep showing up ...
90
votes
5answers
48k views
How to clone a single branch in git?
I have a local git repository called 'skeleton' that I use for storing project skeletons. It has a few branches, for different kinds of projects:
casey@agave [~/Projects/skeleton] git branch
* master
...
90
votes
3answers
19k views
How can one change the timestamp of an old commit in Git?
The answers to this question describe a way to amend previous commit messages that haven't yet been pushed upstream. The new messages inherit the timestamps of the original commits. This seems ...
90
votes
3answers
43k views
How to copy a local Git branch to a remote repo
I've taken the following steps so far:
Cloned a remote Git repo
Branched the master branch to an experimental
edited/tested/committed code in the experimental branch
Now, I'm not ready to merge ...
89
votes
3answers
33k views
Git: How can I reconcile detached HEAD with master/origin?
I'm new at the branching complexities of Git. I always work on a single branch and commit changes and then periodically push to my remote origin.
Somewhere recently, I did a reset of some files to ...
89
votes
12answers
19k views
Is there a way to get the git root directory in one command?
Mercurial has a way of printing the root directory (that contains .hg) via
hg root
Is there something equivalent in git to get the directory that contains the .git directory?
89
votes
4answers
31k views
git: Your branch is Ahead by X commits
How does this actually come about?
I am working in one repo by myself at the moment, so this is my workflow:
1- change files
2- commit
3- repeat 1-2 until satisfied
4- push to master
Then when I ...
89
votes
4answers
31k views
compare local git branch with remote branch?
how can I see a diff between a local branch and a remote branch?
89
votes
15answers
40k views
Git Server Like GitHub?
I am a long time Subversion user that is going to try Git. I have read some about it and understand the distributed nature - I can see a lot of the benefits.
However, I do like the idea of a ...
89
votes
4answers
10k views
Git serve: I would like it that simple
I want to know how to simply publish over http = much like Mercurial's hg serve! On the Windows/work box do this:
git serve
and then on the Linux box SIMPLY go:
git clone http://project project
...
89
votes
3answers
8k views
Git: committed to wrong branch
D'oh! I just made a perfectly good commit to the wrong branch.
How do I undo the last commit in my master branch and then take those same changes and get them into my upgrade branch?
Thanks!
89
votes
2answers
9k views
Git: How to split up a commit buried in history
I flubbed up my history and want to do some changes to it. Problem is, I have a commit with two unrelated changes, and this commit is surrounded by some other changes in my local (non-pushed) history.
...
89
votes
2answers
25k views
In git, what is the difference between merge --squash and rebase?
I'm new to git and I'm trying to understand the difference between a squash and a rebase. As I understand it you perform a squash when doing a rebase.
88
votes
4answers
20k views
git - pushing specific commit
I have made several commits on different files, but so far I would like to push to my remote repository only a specific commit.
Is that possible?
88
votes
6answers
40k views
How do you organise multiple git repositories, so that all of them are backed up together?
With SVN, I had a single big repository I kept on a server, and checked-out on a few machines. This was a pretty good backup system, and allowed me easily work on any of the machines. I could checkout ...
86
votes
2answers
22k views
How to undo a git merge with conflicts
I am on branch mybranch1. mybranch2 is forked from mybranch1 and changes were made in mybranch2.
Then, while on mybranch1, I have done git merge --no-commit mybranch2
It shows there were conflicts ...
86
votes
5answers
29k views
How to revert a “git rm -r .”?
I accidentely said "git rm -r .". How do I recover from this?
I did not commit.
I think all files were marked for deletion and were also physically removed from my lcoal checkout.
EDIT: I could (if ...
86
votes
5answers
12k views
How do I rename a repository on GitHub?
I wanted to rename one of my repositories on GitHub, but I got scared when a big red warning said:
We will not set up any redirects from the old location
You will need to update your local ...
85
votes
2answers
30k views
What's the difference between git clone --mirror and git clone --bare
The git clone help page has this to say about --mirror:
Set up a mirror of the remote repository. This implies --bare.
But doesn't go into detail about how the --mirror clone is different from a ...
84
votes
5answers
20k views
Show ignored files in git
I am getting my feet wet on git and have the following issue:
My project source tree:
/
|
+--src/
+----refs/
+----...
|
+--vendor/
+----...
I have code (currently MEF) in my vendor branch that I ...
83
votes
5answers
82k views
Git pull certain branch from github
I have a project with multiple branches. I've been pushing them to github, and now that someone else is working on them i need to do a pull from github. It works fine in master. But say I have branch ...
83
votes
7answers
43k views
Using Git how do I find changes between local and remote
Here are two different questions but I think they are related.
When using Git, how do I find which changes I have committed locally, but haven't yet pushed to a remote branch? I'm looking for ...
83
votes
2answers
15k views
What's the purpose of git-mv?
From what I understand, Git doesn't really need to track file rename/move/copy operations, so what's the real purpose
of git mv? The man page isn't specially descriptive...
Is it obsolete? Is it an ...
83
votes
6answers
27k views
git branch naming best practices
I've been using a local git repository interacting with my group's CVS repository for several months, now. I've made an almost neurotic number of branches, most of which have thankfully merged back ...
83
votes
2answers
23k views
Git - How to use .netrc file on windows to save user and password
Is it possible to use a .netrc file on windows when I'm using Git to clone a remote repository with http and user - password?
82
votes
14answers
33k views
How to get the git commit count?
I'd like to get the number of commits of my git repository, a bit like SVN revision numbers.
The goal is to use it as a unique, incrementing build number.
I currently do like that, on ...
82
votes
2answers
58k views
git submodule update
I'm not clear on what the following means (from git update docs):
...will make the submodules HEAD be detached, unless --rebase or --merge is specified...
How does --rebase/--merge change ...
82
votes
5answers
33k views
Switch branch names in git
There may be more than one way to ask this question, so here's a desciption of the problem. I was working on master and committed some stuff and then decided I wanted to put that work on hold. I ...
82
votes
4answers
20k views
Undo a particular commit in Git
What is the simplest way to undo a particular commit that is:
not in the head or HEAD
Has been pushed to the remote.
Because if it is not the latest commit,
git reset HEAD
doesn't work. And ...
81
votes
4answers
56k views
Deleting Files using Git/GitHub
First off, I'm new to Git.
I deleted a bunch of files locally on my Mac using Finder. I want the files that I deleted to no longer show in the current branch, but they do.
Any Git users know a ...