0
votes
1answer
35 views
Choosing DVCS - criteria
There are similar questions on SO but I'd like some clearer answers here.
How important is DVCS not littering your working folder with files? (Alternately is single file repository a big plus to …
34
votes
14answers
2k views
Best Version control for lone developer
I'm a lone developer at the moment; please share you experiences on what is a good VC setup for a lone developer.
My constraints are;
I work on multiple machines and need to keep them synced up
…
2
votes
2answers
143 views
Seeing what revision goes with a tag in Git
Beginner Git question:
In the Mercurial world, "hg tags" gives me a list of tags and the corresponding revisions, whereas "git tag" only lists the tag names. How do I see what the matching rev …
1
vote
1answer
15 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 …
1
vote
2answers
70 views
Which DVCS would work best on Windows for my scenario?
At work I use ClearCase and SourceSafe, but have found some time to do some time to code for myself enroute thanks to a disposable laptop.
However, I wish I had a lightweight VCS on my system using …
3
votes
3answers
62 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
53 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 …
11
votes
14answers
1k 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 …
4
votes
3answers
85 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
3answers
53 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 …
1
vote
2answers
84 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 …
4
votes
1answer
109 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
1answer
53 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 …
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
92 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 …
