Tagged Questions
Version control is the management of changes to documents, programs, and other information stored as computer files.
671
votes
35answers
116k views
Git for beginners: The definitive practical guide [closed]
Ok, after seeing this post by PJ Hyett, I have decided to skip to the end and go with Git.
So what I need is a beginner's practical guide to Git. "Beginner" being defined as someone who knows how to ...
533
votes
23answers
95k views
What is the Difference Between Mercurial and Git?
I've been using git for some time now on Windows (with msysGit) and I like the idea of distributed source control. Just recently I've been looking at Mercurial (hg) and it looks interesting. However, ...
485
votes
19answers
89k 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?
368
votes
8answers
185k views
How do I fix merge conflicts in Git?
Is there a good way to explain how to resolve merge conflicts in Git?
295
votes
56answers
12k views
Do you source control your databases?
I feel that my shop has a hole because we don't have a solid process in place for versioning our database schema changes. We do a lot of backups so we're more or less covered, but it's bad practice to ...
269
votes
8answers
18k 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 ...
189
votes
23answers
11k views
Mercurial for Beginners: The Definitive Practical Guide
Inspired by Git for beginners: The definitive practical guide.
This is a compilation of information on using Mercurial for beginners for practical use.
Beginner - a programmer who has touched source ...
182
votes
92answers
16k views
Good excuses NOT to use version control
This question may seem backwards to all logical reasoning, but I encountered a team member who was working on a side project out of the main tree, and had decided ( rephrased )
I'm the only ...
168
votes
12answers
49k 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?
163
votes
8answers
36k 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 ...
161
votes
35answers
13k views
What to do about a 11000 lines C++ source file?
So we have this huge (is 11000 lines huge?) mainmodule.cpp source file in our project and every time I have to touch it I cringe :-)
As this file is so central and large, it keeps accumulating more ...
158
votes
9answers
75k views
What GUIs exist for Git on Windows
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.
157
votes
6answers
49k 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 ...
151
votes
12answers
42k 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 ...
146
votes
9answers
38k views
Git ignore file for Xcode projects
Which files should I include in .gitignore when using Git in conjunction with Xcode?
142
votes
20answers
112k views
Best visual client for Git on Mac OS X? [closed]
I'm looking for a nice, Mac OS X-like, client for Git. As an example, I use Versions for Subversion and it's exactly what I'd like to purchase for Git access. Suggestions?
140
votes
44answers
7k views
Is Subversion (Version Control) Necessary For A Small Development Group (1-2 programmers)?
I am trying to debate the point that version control is important for either one or two developers.
More specifically, I work in a department in which there are typically two PHP developers, using ...
140
votes
10answers
28k 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.
139
votes
2answers
12k views
Git: 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. ...
138
votes
16answers
93k views
How to ignore a directory with SVN?
Just started using SVN and I have a cache directory that I don't need under source control. How can I ignore the whole directory/folder with SVN?
Edit: Using Versions and TextMate on OSX and ...
135
votes
12answers
36k 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 ...
128
votes
3answers
27k views
Differences in 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.
...
123
votes
24answers
84k views
What is the best Git GUI on OSX? [closed]
What is the best GUI on OSX for viewing a Git repository, and (optionally) manipulating it?
120
votes
23answers
17k views
Do you continue development in a branch or in the trunk?
Suppose you're developing a software product that has periodic releases. What are the best practices with regard to branching and merging? Slicing off periodic release branches to the public (or ...
119
votes
28answers
20k views
How do I version my MS SQL database in SVN?
I've been wanting to get my databases under version control. Does anyone have any advice or recommended articles to get me started?
I'll always want to have at least some data in there (as alumb ...
116
votes
5answers
50k 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 ...
110
votes
4answers
19k views
What does git do to files that are a symbolic link?
If I have a file or directory that is a symbolic link and I commit it to a git repo what happens to it?
I would assume that it leaves it as a symbolic link until the file is deleted and then if you ...
109
votes
16answers
8k views
What are the relative strengths and weaknesses of Git, Mercurial, and Bazaar?
What do folks here see as the relative strengths and weaknesses of Git, Mercurial, and Bazaar?
In considering each of them with one another and against version control systems like SVN and Perforce, ...
108
votes
2answers
16k views
What is the difference between hg forget and hg remove?
I want mercurial to remove several files from the current state of the repository. However, I want the files to exist in prior history.
How do forget and remove differ, and can they do what I want?
105
votes
10answers
16k views
How to edit incorrect commit message in Mercurial?
I am currently using TortoiseHg (Mercurial) and accidentally committed an incorrect commit message. How do I go about editing this commit message in the repository?
102
votes
13answers
44k views
Can git be integrated with Xcode?
Is there any way to use a git repository with the built in SCM functions of Xcode?
99
votes
9answers
52k 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: ...
95
votes
22answers
78k views
Svn vs Git [closed]
I am starting a new distributed project where some of the developers will not be in the same country... What should I use: Git or SVN?
Why?
PS. It is a smart client application running on windows ...
92
votes
26answers
4k views
How often to commit changes to source control?
How often should I commit changes to source control ? After every small feature, or only for large features ?
I'm working on a project and have a long-term feature to implement. Currently, I'm ...
87
votes
6answers
31k 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.
...
87
votes
13answers
32k views
git-upload-pack: command not found, how to fix this correctly
I have been using git to keep two copies of my project in sync, one is my local box, the other the test server.
This is an issue which occurs when I log onto our remote development server using ssh;
...
85
votes
6answers
3k 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 ...
85
votes
7answers
52k 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? Whats the best workflow ...
84
votes
12answers
54k 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?
...
82
votes
14answers
22k views
Best general SVN Ignore Pattern?
What is the best (or as good as possible) general SVN ignore pattern to use?
There are a number of different IDE, editor, compiler, plug-in, platform, etc. specific files and some file types that ...
81
votes
7answers
18k 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?
80
votes
5answers
13k views
How to migrate/convert from SVN to Mercurial (hg) on windows
I'm looking for a tool to migrate a couple of SVN repositories to Mercurial, with history, labels and so on.
I'm using TortoiseHg (Windows x32), so ConvertExtensions are discarded. There's some info ...
80
votes
7answers
75k views
78
votes
5answers
28k 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, ...
78
votes
10answers
39k views
What's the best Web interface for Git repositories?
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. ...
77
votes
5answers
9k views
Mercurial: Named Branches vs Multiple Repositories
We're currently using subversion on a relatively large codebase. Each release gets its own branch, and fixes are performed against the trunk and migrated into release branches using svnmerge.py
I ...
75
votes
2answers
20k 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?
75
votes
9answers
8k views
How do you organize your version control repository?
First, I know about this: http://stackoverflow.com/questions/51217/how-would-you-organize-a-subversion-repository-for-in-house-software-projects
Next, the actual question:
My team is restructuring our ...
74
votes
6answers
15k 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. ...
74
votes
16answers
63k views
Checkout one file from Subversion
"It is not possible to check out a single file. The finest level of checkouts you can do is at the directory level."
How do I get around this issue when using Subversion?
We have this folder in ...