]>
git.madduck.net Git - code/myrepos.git/commitdiff
madduck's git repository
Every one of the projects in this repository is available at the canonical
URL git://git.madduck.net/madduck/pub/<projectpath> — see
each project's metadata for the exact URL.
All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@ git. madduck. net .
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
SSH access, as well as push access can be individually
arranged .
If you use my repositories frequently, consider adding the following
snippet to ~/.gitconfig and using the third clone URL listed for each
project:
[url "git://git.madduck.net/madduck/"]
insteadOf = madduck:
summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
43ec214 )
* Add the -n switch, for disabling recursion.
* Allow for more complex deleted tests, such as marking a repo deleted on
some hosts, while not on others.
* Add the -n switch, for disabling recursion.
* Allow for more complex deleted tests, such as marking a repo deleted on
some hosts, while not on others.
+ * Support registering CVS repositories. Closes: #447171
- -- Joey Hess <joeyh@debian.org> Thu, 18 Oct 2007 15:39:03 -0400
+ -- Joey Hess <joeyh@debian.org> Thu, 18 Oct 2007 16:20:34 -0400
mr (0.3) unstable; urgency=low
mr (0.3) unstable; urgency=low
fi
echo "Registering bzr url: $url"
mr -c "$MR_CONFIG" config "$(pwd)" checkout="bzr clone $url $basedir"
fi
echo "Registering bzr url: $url"
mr -c "$MR_CONFIG" config "$(pwd)" checkout="bzr clone $url $basedir"
+ elif [ -d CVS ]; then
+ repo=$(cat CVS/Repository)
+ root=$(cat CVS/Root)
+ if [ -z "$root" ]; then
+ error "cannot determine cvs root"
+ fi
+ echo "Registering cvs repository $repo at root $root"
+ mr -c "$MR_CONFIG" config "$(pwd)" \
+ checkout="cvs -d '$root' co -d $basedir $repo"
else
error "unable to register this repo type"
fi
else
error "unable to register this repo type"
fi