2
votes
2answers
38 views
Should I have to merge and commit every time I update my Mercurial branch on the production server?
I'm using Mercurial in a recent project. On the web server where I'm deploying the project I have a slightly different config file with production settings. The problem is when I pull and update, I …
4
votes
3answers
71 views
Git: merging public and private branches while while keeping certain files intact in both branches
Hi,
I've read a few git questions here, but could not find an answer to this one:
I have a public and a private branches where I want to allow certain files to diverge.
Those are configuration …
1
vote
2answers
76 views
How would you store encrypted information in public DVCS repository?
Hello Everyone,
I have projects that multiple developers are working on. We all work off the same git repository.
Currently, I do not store production server configuration in the repository, because …
1
vote
3answers
51 views
Restore previously removed code (not necessarily single or whole file) in git
I removed a class a feature from my code a while back and committed the removal. The feature was implemented as a single class with a BDD-style spec and a few other classes were altered in the removal …
34
votes
8answers
1k 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 …
2
votes
1answer
46 views
Distributed source control for VisualWorks Smalltalk
One of the annoying things about Smalltalk is that it (usually) requires its own VCS, due to the way that it manages its source code. Squeak and Gemstone (at least in its GLASS version) have a DVCS …
4
votes
1answer
106 views
Git tool to remove lines from staging if they consist only of changes in whitespace
The point in removing trailing whitespace is that if everyone does it always then you end up with a diff that is minimal, ie. it consists only of code changes and not whitespace changes.
However when …
6
votes
3answers
204 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 …
1
vote
2answers
89 views
How does git track source code moved between files?
Apparently, when you move a function from one source code file to another, the git revision log (for the new file) can show you where that code fragment was originally coming from (see for example the …
2
votes
2answers
40 views
Are Mercurial’s bundled extensions considered part of it’s core feature set and approach to version control?
I'm currently trying to evaluate Mercurial, to get a feel for the philosophy the system tries to promote - but one thing that's got me confused is the presence of the bundled 'extensions' and how they …
1
vote
3answers
59 views
Which DVCS is most conducive to experimenting?
I was wondering which DVCS is most conducive to experimentation i.e. branching, etc. I want something where anyone can quickly launch smaller projects and refactor code quickly. I want to create an …
2
votes
2answers
65 views
How to “cat” a file in JGit?
A while back I was looking for an embeddable distributed version control system in Java,
and I think I have found it in JGit, which is a pure Java implementation of git.
However, there is not much in …
2
votes
2answers
102 views
Mercurial: Why would you maintain separate branches/versions of software in separate cloned repos rather than with tags?
I'm looking at the mercurial handbook, chapter 6 "Working with multiple branches". In there the author states that if you have separate versions/branches of the same software that it makes sense in an …
1
vote
4answers
79 views
How to initialize google-code project in Mercurial
I have started a Mercurial based project on google code.
I have worked in subversion for sometime, but I am confused with what to do what in Hg.
I would like help on the following:
How do I …
35
votes
39answers
3k views
Version Control. Getting started…
So I know I need to implement version control, even for just the developing I do at home. My issue is I have read about how great Subversion is for the past couple years. I was about to dedicate …
