28
votes
19answers
1k 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, …
18
votes
9answers
5k 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?
17
votes
25answers
2k views
ClearCase advantages/disadvantages
Because I'm currently struggeling to learn IBM Rational ClearCase, I'd like to hear your professional opinion.
I'm particularly interested in advantages/disadvantages compared to other …
16
votes
5answers
871 views
Best branching strategy when doing continuous integration?
What is the best branching strategy to use when you want to do continuous integration?
Release Branching - Unstable Trunk:
or
Feature Branching - Stable Trunk:
Does it make sense to use both of …
15
votes
9answers
1k views
Suggestions for a good commit message: format/guideline?
I'm at the beginning of a new project, and I'm trying to set up the repository in a smart fashion and establish some code style guidelines for everyone to be able to concentrate on code.
Most of it …
14
votes
6answers
878 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 …
14
votes
12answers
762 views
How do you track database changes in source control?
We use SQL Server 2000/2005 and Vault or SVN on most of our projects. I haven't found a decent solution for capturing database schema/proc changes in either source control system.
Our current …
13
votes
18answers
377 views
Should universities be teaching SCM/methodology skills?
Most CS programs these days do not teach skills such as:
source control
configuration management
integration (and continuous integration)
code readability (AKA how to comment correctly)
programming …
12
votes
52answers
2k views
What is the WORST commit message you have ever authored?
I mean, we've all done it, making some changes and the checking them in with messages such "as made some changes" or "fixed a bug." Messages so inane, so pointless, you might as well have written …
12
votes
5answers
1k views
How does Git solve the merging problem?
SVN made branching much easier by making branches really cheap, but merges remain a real problem in SVN - one that Git supposedly solves.
Does Git achieve this, and how?
(disclaimer: All I know …
12
votes
16answers
1k views
Any Real-Life Visual Source Safe Horror Stories
VSS is much maligned and perhaps justifiably so. Please don't confuse me as an apologist for it, as I gave up on it a while back in favor of Vault.
However, despite using VSS for over 10 years on …
11
votes
6answers
349 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 …
11
votes
5answers
1k views
Git - is it pull or rebase when working on branches with other people
Hi everybody,
So if I'm using branches that are remote (tracked) branches, and I want to get the lastest, I'm still unclear if I should be doing git pull or git rebase. I thought I had read that …
10
votes
3answers
1k 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 …
9
votes
6answers
7k views
Git: Remove file accidentally added to the repository.
I had a conflict in a merge. Git creates filename.orig and filename.remote when a conflict happens. I resolved the conflict, but somehow filename.orig got added to the repository several commits ago …
