Tagged Questions
DVCS stands for Distributed Version Control System.
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 ...
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?
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.
153
votes
38answers
14k views
What are your favorite git features or tricks? [closed]
What are your favorite git features or tricks, or even workflows? Post one feature, trick, or workflow per answer.
104
votes
6answers
14k views
How do I commit all deleted files in git?
If I delete some files from the disk they come up as deleted like so:
C:\git\bc>git status
# On branch tracking2
# Changed but not updated:
# (use "git add/rm <file>..." to update what ...
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, ...
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 ...
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. ...
63
votes
3answers
22k 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 ...
62
votes
9answers
9k views
What do people think of the fossil DVCS?
fossil http://www.fossil-scm.org
I found this recently and have started using it for my home projects. I want to hear what other people think of this VCS.
What is missing in my mind, is IDE ...
54
votes
3answers
8k 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
\
...
52
votes
37answers
4k views
Getting started with Version Control
I need to implement version control, even for just the developing I do at home. I have read about how great Subversion is for the past couple years and was about to dedicate myself to learning this ...
42
votes
3answers
3k views
Using Mercurial in a Large Organization
I've been using Mercurial for my own personal projects for a while, and I love it. My employer is considering a switch from CVS to SVN, but I'm wondering whether I should push for Mercurial (or some ...
41
votes
16answers
13k views
What's the best three-way merge tool?
Subversion, Git, Mercurial and others support three-way merges (combining mine, theirs, and the "base" revision) and support graphical tools to resolve conflicts.
What tool do you use? Windows, OSX, ...
39
votes
24answers
14k views
Any good git tutorials?
Are there any good git tutorials available somewhere, except for the official tutorial?
I like the mercurial book, but haven't found anything similar for git. I would like to start using git in some ...
36
votes
8answers
2k views
What makes merging in DVCS easy?
I read at Joel on Software:
With distributed version control, the
distributed part is actually not the
most interesting part.
The interesting part is that these
systems think in terms ...
35
votes
10answers
21k views
Git under windows: MSYS or Cygwin?
I plan to migrate my projects over to git, and I'm currently wondering which is the best and / or most stable option under windows.
From what I gather I basically have 2.5 options:
MSYSgit
git ...
35
votes
5answers
7k views
Backing Out a backwards merge on Mercurial
How do you reverse the effect of a merge on polarised branches without dying of agony?
This problem has been plaguing me for months and I have finally given up.
You have 1 Repository, with 2 Named ...
35
votes
18answers
2k views
Do you use distributed version control?
I'd like to hear from people who are using distributed version control (aka distributed revision control, decentralized version control) and how they are finding it. What are you using, Mercurial, ...
34
votes
5answers
4k views
How can I see incoming commits in git?
How can I see incoming commits in git? Or even better, see what I just git fetch/git pulled?
Edit: To clarify the question: someone tells me that, to get some fixes, I should pull from their ...
32
votes
2answers
5k 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 ...
31
votes
2answers
2k 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 ...
31
votes
16answers
9k views
Comparison between Centralized and Distributed Version Control Systems
What are the benefits and drawbacks with using Centralized versus Distributed Version Control Systems (DVCS)? Have you run into any problems in DVCS and how did you safeguard against these problems? ...
28
votes
4answers
7k views
How do I “switch” with Mercurial
How do I do what svn switch does, in Mercurial?
That is change my working directory to switch to another branch in the repository?
27
votes
9answers
2k views
What's so great about git?
For someone coming from a more conventional VCS background (CVS/SVN), what are the most compelling reasons to learn and migrate to git?
Please comment upon a team's required technical ability in ...
27
votes
5answers
8k views
How do I keep an svn:external up to date using git-svn?
Treating my repository as a SVN repo, I get:
svn co http://myrepo/foo/trunk foo
...
foo/
bar/
baz/ -> http://myrepo/baz/trunk
Treating it as a Git repo, I get:
git svn clone ...
26
votes
7answers
2k views
How do I convince my team to move from SVN to Mercurial?
The team I'm working with uses SVN for keeping version control. (It was used for years by them.) Recently I found Mercurial as a VCS and it looks much convenient for me than SVN.
What arguments wound ...
26
votes
34answers
3k views
Which Version Control System would you use for a 1000+ developer organization? Why? [closed]
There are many SCM systems out there. Some open, some closed, some free, some quite expensive. Which one (please choose only one) would you use for a 3000+ developer organization with several sites ...
25
votes
6answers
2k views
Are DVCS like Git inappropriate for teams using continuous integration?
My team's development processes are based on continuous integration. The only branches we create are maintenance branches when we release, but otherwise developers are expected to commit regularly ...
24
votes
7answers
738 views
Should checkins be small steps or complete features?
Two uses of version control seem to dictate different checkin styles.
distribution centric: changesets will generally reflect a complete feature. In general these checkins will be larger. This ...
24
votes
5answers
6k views
Can I clone part of a Mercurial repository?
Is it possible to clone part of a Mercurial repository? Let's say the repository is quite large, or contains multiple projects, or multiple branches. Can I clone only part of the repository?
E.g. in ...
24
votes
6answers
4k views
Why Kiln is based on Mercurial, and not other (D)VCS
What were the reason for chosing Mercurial as a basis of FogCreek Kiln, a source control management system with tightly integrated code review, and FogBugz integration?
Why Mercurial, and not other ...
23
votes
8answers
4k views
Is using a central repository going against GIT's purpose?
If you are in a corporate setting with many people working on a particular application, is it going against the grain of a distributed version control system to have an official central repository?
...
22
votes
1answer
1k views
How to use mercurial for release management?
This is a cousin question with my earlier question of "How to manage concurrent development with mercurial", which covers individual developer workflow. The answer to this question will actually ...
22
votes
14answers
13k views
Locking binary files using git version control system
For one and a half years, I have been keeping my eyes on the git community in hopes of making the switch away from SVN. One particular issue holding me back is the inability to lock binary files. ...
19
votes
3answers
2k views
Mercurial: Can I rename a branch?
We now have a "stiging" branch, where "staging" seems to be a far better semantic fit. What's a good strategy for handling this?
19
votes
7answers
3k views
How do I clone a sub-folder of a repository in Mercurial?
I have a Mercurial repository containing a handful of related projects. I want to branch just one of these projects to work on it elsewhere.
Is cloning just part of a repository possible, and is that ...
19
votes
6answers
961 views
How are DVCS used in large teams?
I've recently started getting into Git on a personal project, and I can see how a DVCS might benefit us at work (which is a large enterprise software company, currently running Perforce). Feature ...
18
votes
5answers
8k views
A pretty and feature rich git GUI for Linux
I was checking out for a rich GUI for Git on Linux. Of late I have started using it a lot and find that even though command-line is very useful, I would still want a GUI at my disposal since I am not ...
18
votes
7answers
4k views
Git versus Mercurial for .NET developers?
I've been wondering what is the better DVCS for .NET developers? From reading various information it has sounded like Mercurial works better on Windows, but other information claims that Git has ...
18
votes
6answers
3k views
Build sequencing when using distributed version control
Right now, we are using Perforce for version control. It has the handy feature of a strictly increasing change number that we can use to refer to builds, eg "you'll get the bugfix if your build is at ...
18
votes
25answers
2k views
Distributed source control options
I've been interested in Git, but the last time I looked the Windows support was essentially "run Linux".
Are there any distributed source control tools that run well on Windows?
16
votes
3answers
731 views
How to manage concurrent development with mercurial?
This is a best practice question, and I expect the answer to be "it depends". I just hope to learn more real world scenarios and workflows.
First of all, I'm talking about different changes for the ...
16
votes
5answers
5k views
How to setup GIT bare HTTP-available repository on IIS-machine
server already runs IIS to serve 80 and 443 port over TCP. I want to make centralized "push/pull" GIT repository available to all my team members over the Internet.
So I should use HTTP or HTTPS.
...
15
votes
7answers
1k 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 ...
15
votes
6answers
1k views
How does Mercurial stack up against GIT and SVN?
With Phil Haack and others recently tweeting about CodePlex's move to support Mercurial as a DVCS, I thought it might be worth a look.
As someone who currently uses SVN for personal projects and TFS ...
15
votes
3answers
4k views
How to automatically remove all .orig files in Mercurial working tree?
During merges mercurial leaves .orig file for any unresolved file. But after manually resolving problems and marking a file correct it does not delete the .orig file. Can it be automatically removed ...
15
votes
4answers
1k views
Is there a way to remove the history for a single file in Mercurial?
I think I already know the answer to this but thought I would ask anyway:
We have a file that got added to a Mercurial repository with sensitive information in it. Is there any way to remove that ...
15
votes
2answers
2k views
Using Mercurial locally, only with Subversion server
We are using a Subversion server at my job for source control. I was thinking that rather than keeping up with my own branch, I would run Mercurial on my workstation, commit locally, and then commit ...
15
votes
6answers
639 views
Is a DVCS useful for one developer?
Or would a conventional client-server VCS be more appropriate? I'm currently using TortoiseSVN, but I'm interested in a DVCS, but I'm not sure if it's even a good idea to try to use something like ...