1
vote
5answers
68 views
How can I create a new branch in git from an existing file tree?
I am looking to add an existing file tree to a git repository as a new branch (I can't just copy the existing tree into my git tree, since the existing tree is versioned under a different VCS, and I …
8
votes
4answers
146 views
FogBugz On Demand + online source control at low/no cost?
I have a project in the free hosted FogBugz On Demand (FOD) product right now. This is great for feature/issue tracking. But I've been working from a codebase that is solely on my development machine. …
0
votes
4answers
77 views
Would like to create some defaults for my .hgignore files in TortoiseHG/Mercurial
I'd like to make it so that every time I create a new repository, certain filters automatically get added to my .hgignore files by default.
For example, for C# projects, I would like these to be …
2
votes
3answers
54 views
Best practices to keep up a diverging branch of code
I'm in a situation where some minor patches I've submitted to an open-source project were ignored or explicitly not accepted.
I consider them useful, but more important is that I need the …
0
votes
4answers
330 views
Google Wave as code repository and IDE?
Is it possible to write a Google Wave plugin that turns it into an IDE for programming? With such an extension, Google Wave would be a replacement for Eclipse etc., and it would naturally be a code …
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 …
1
vote
6answers
162 views
Has anyone used Rational Team Concert (RTC)?
The company I work for is currently evaluating replacements for SourceSafe, and for various reasons, I think RTC will be chosen. I'm a little scared that we're going to end up with a solution that …
1
vote
2answers
56 views
Tips on upgrading CVS to git/hg?
We still use CVS, I use git and hg for my personal use though I'm still a novice at both, but I realize they're much more modern and better, faster, distributed, etc.
It's just everyone is so …
1
vote
1answer
30 views
How do I minimize the number of changes between revisions with new doxygen output?
A subversion repository contains the html, latex and man directories that doxygen generates from the source code. Even for small source code changes, new files are being generated with random names …
1
vote
3answers
68 views
Need an encrypted online source code backup service.
Please note this is not a question about online/hosted SVN services.
I am working on a home based, solo developer, project that now has commercial significance and it is time to think about remote …
0
votes
1answer
48 views
TeamCity & Subversion: Checkout copies ALL tags to buildagent’s checkout directory
We have the following URL:
URL: https://dev-01:8555/svn/Shop
We have the following structure in SubVersion
Shop
--trunk
--branches
--tags
The problem is, when I do a build, under the buildagent …
36
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 …
0
votes
1answer
92 views
What is a branch in CVS?
What is a branch in CVS?
0
votes
1answer
48 views
Push DVCS repository to master without needing codebase
To work on a client's staging environment I have to connect through a VPN which locks all normal network traffic and prevents any connection to the Internet.
This would immediately prevent any of the …
0
votes
3answers
178 views
Recursively CVS add files/directories and ignore existing CVS files.
There's a similar post @ http://stackoverflow.com/questions/5071/how-to-add-cvs-directories-recursively
However, trying out some of the answers such as:
find . -type f -print0| xargs -0 cvs add
…
