1
vote
1answer
9 views
How to authenticate users on TortoiseHg web server?
Hi,
TortoiseHg web server configuration has an "Allow Push" parameter where I put the users allowed to push changes. But when I try to push I get an "authorization failed" error. How are the users …
3
votes
3answers
61 views
git: how to add/commit removals made via vanilla rm?
I deleted a bunch of files / directories from a git repository using rm, the Finder, etc.
I'm looking for a git command that'll record these to the index as marked for removal. (As if I had called …
2
votes
2answers
47 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
75 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
78 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
52 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 …
2
votes
1answer
52 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
108 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 …
2
votes
2answers
42 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
2answers
90 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 …
1
vote
4answers
88 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 …
6
votes
3answers
215 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
3answers
60 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
68 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
107 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 …
