0
votes
Step by step tutorial for xinc?
I don't know about the conf.d file but the build.xml should be a Phing-build file.
Phing is the build system much like Ant or similar
…
1
vote
Moving code from codeplex to google code - keeping history.
How do I import an existing Subversion repository? or a more complete tutorial
…
2
votes
Getting svn diff to show C++ function during commit
Is there a simple regex to match a C++ function? No.
Is there a (complex) regex to match a C++. Maybe or could be possible to write one.
But I would say regular expressions neither …
1
vote
in-place import in other version control systems? dvcs?
For git (assuming it is installed already):
cd /etc
git init-db
chmod og-rwx .git
git add .
git commit -a -m"initial import"
…
1
vote
Deleting svn checkout with NAnt
If you want to delete the whole trunk directory
<delete dir="myproject/trunk" />
I can't verify right now if <include ... /> is even able …
2
votes
How should I branch and tag before and after a release?
I suggest reading this answer
Release management in SVN
Basically have one branch cal …
2
votes
SVN Won’t download newly added files
From this answer:
Subversion (using VisualSVN/Tortoise) refuses …
1
vote
git svn clone not checking out all directories
You could try
svn2git
or
git svn clone svn+ssh://host/path project_name --trunk=trunk/*
…
1
vote
Svn -> git migration with several trunk/branches/tags
Did you already try the built-in
git svn clone
git-svn
…
4
votes
Using git as a centralized version server
Git - SVN Crash Course
Especially this is of interest for a starter
git init
git add
git clone git://...
git …
3
votes
1
vote
Wipe SVN to reinitialise
Supposing you use linux and the repository (not the workspace) lies in /home/svn/repo
rm -rf /home/svn/repo
Basically just delete the folder which hol …
0
votes
Versioning SQLite databases with Subversion. Good idea or bad idea?
Are SQLite database files clear-text files or binary? If they are binary I don't think you benefit from using Subversion that much (as IMHO it shouldn't be used as a backup system).
Instead …
