Git is an open-source DVCS (Distributed Version Control System).
learn more… | top users | synonyms | git jobs
83
votes
2answers
59k 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 ...
616
votes
11answers
61k 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 ...
42
votes
3answers
8k views
Can git automatically switch between spaces and tabs?
I use tabs for indentation in my python programs, but I would like to collaborate (using git) with people who use spaces instead.
Is there a way for git to automatically convert between spaces and ...
35
votes
2answers
13k views
How do I tell git to always select my local version for conflicted merges on a specific file?
Say I'm collaborating with someone via a git repository, and there is a particular file that I never want to accept any external changes to.
Is there any way for me to set up my local repo to not ...
843
votes
19answers
176k 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 ...
41
votes
2answers
4k views
Describe your workflow of using version control (VCS or DVCS)
I'd like to learn other people workflow when using either vcs or dvcs.
Please describe your strategy to handle the following tasks:
Implement a feature
Fixing bugs (during development and ...
45
votes
2answers
14k views
Why did git detach my head?
I ended up with a detached head today, the same problem as described in this question:
"git push says everything up-to-date even though I have local changes"
As far as I know I didn't do anything ...
221
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?
450
votes
17answers
125k 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 ...
138
votes
5answers
22k 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 ...
797
votes
13answers
237k 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 ...
22
votes
3answers
8k views
Distributing git configuration with the code
In trying to standardise the platform for the developers, one of my needs would be to commit the .git/config so that everybody have the same CRLF config without forgetting to set it by hand.
How do I ...
392
votes
18answers
107k 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 ...
226
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. ...
78
votes
7answers
28k views
What are the git limits?
Does anyone know what are the git limits for number of files and size of files?
2507
votes
15answers
598k 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?
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 ...
252
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 ...
694
votes
17answers
125k 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?
38
votes
3answers
6k views
Trimming GIT Checkins/Squashing GIT History
I check my code into a GIT branch every few minutes or so, and the comments end up being things like "Everything broken starting again" and other absurdities.
Then every few minutes/hours/days I do a ...
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?
514
votes
13answers
103k views
Using Git and Dropbox together effectively?
Is there a good tutorial where I can learn using Git and Dropbox together effectively?
379
votes
9answers
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 ...
412
votes
13answers
85k 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?
152
votes
6answers
67k 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 ...
49
votes
6answers
22k views
git push says everything up-to-date even though I have local changes
I have a remote gitosis server and a local git repository, and each time I make a big change in my code, I'll push the changes to that server too.
But today I find that even though I have some local ...
1181
votes
8answers
507k views
How do I fix merge conflicts in Git?
Is there a good way to explain how to resolve merge conflicts in Git?
994
votes
10answers
179k 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 ...
390
votes
10answers
77k 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 ...
63
votes
4answers
23k views
gitosis vs gitolite?
I am looking for installing a git server to share projects with my team. I don't want to create a user account on the server with SSH access for each developer that needs a git access.
It seems there ...
48
votes
5answers
8k views
Which commit has this blob?
Given the hash of a blob, is there a way to get a list of commits that have this blob in their tree?
72
votes
10answers
86k views
Unable to Git-push master to Github
This question is related to my problem in understanding rebase, branch and merge,
and to the problem
How can you commit to your github account as you have a teamMate in your remote list?
I found ...
37
votes
7answers
4k views
Distributed Version Control Systems and the Enterprise - a Good mix?
I can see why distributed source control systems (DVCS - like Mercurial) make sense for open source projects.
But do they make sense for an enterprise? (over a centralized Source Control System such ...
22
votes
4answers
7k views
Cloning a Non-Standard Svn Repository with Git-Svn
I'm relatively new to Git, but I've found it so easy to work with at home that I'd like to use it at work where our projects are stored in Svn repositories. Unfortunately, the repositories are ...
1019
votes
11answers
119k 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
?
346
votes
14answers
81k views
Git ignore file for Xcode projects
Which files should I include in .gitignore when using Git in conjunction with Xcode?
239
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.
...
104
votes
5answers
13k views
Merging: Hg/Git vs. SVN
I often read that Hg (and Git and...) are better at merging than SVN but I have never seen practical examples of where Hg/Git can merge something where SVN fails (or where SVN needs manual ...
56
votes
3answers
22k views
HEAD and ORIG_HEAD in Git
What do these symbols refer to and what do they mean?
(I can't find any explaination in official documentation)
23
votes
5answers
6k views
git command for making one branch like another
I'm trying to take a branch with changes and bring it back to be identical to the upstream it diverged from. The changes are both local and have been pushed to github, so neither git reset or git ...
157
votes
2answers
90k 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 ...
26
votes
1answer
4k views
How can I email someone a git repository?
I have tried:
git archive HEAD --format=zip > archive.zip
:and then I email archive.zip and at the other end they unzip archive.zip into a folder. But when they try any git commands they find ...
440
votes
3answers
149k 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?
181
votes
21answers
54k 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 ...
150
votes
7answers
107k 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 ...
83
votes
2answers
24k 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?
64
votes
7answers
22k views
Track all remote git branches as local branches
Tracking a single remote branch as a local branch is straightforward enough.
$ git checkout --track -b ${branch_name} origin/${branch_name}
Pushing all local branches up to the remote, creating ...
67
votes
2answers
31k views
Why should I use core.autocrlf=true in Git?
I have a Git repository that is accessed from both Windows and OS X, and that I know already contains some files with CRLF line-endings. As far as I can tell, there are two ways to deal with this:
...
196
votes
3answers
37k 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 ...
105
votes
4answers
34k views
How to cherry pick a range of commits and merge into another branch
I have the following repository layout:
master branch (production)
integration
working
What I want to achieve is to cherry pick a range of commits from the working branch and merge it into the ...