]>
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:
681a171 )
to add or modify, and it is followed by one or more instances of
"parameter=value". Use "parameter=" to remove a parameter.
to add or modify, and it is followed by one or more instances of
"parameter=value". Use "parameter=" to remove a parameter.
-For example, to register a new svn repository in src/foo:
+For example, to add (or edit) a repository in src/foo:
- mr config src/foo checkout="svn co svn://example.com/foo/trunk"
+ mr config src/foo checkout="svn co svn://example.com/foo/trunk foo "
"mr st" is equivilant to "mr status", and "mr up" is equivilant to "mr
update"
"mr st" is equivilant to "mr status", and "mr up" is equivilant to "mr
update"
-Additional parameters can be passed to other commands than "commit", they
-will be passed on unchanged to the underlying revision control system.
-This is mostly useful if the repositories mr will act on all use the same
-revision control system.
+Additional parameters can be passed to most commands, and are passed on
+unchanged to the underlying revision control system. This is mostly useful
+if the repositories mr will act on all use the same revision control
+system.
if [ -z "$url" ]; then \
error "cannot determine svn url" \
fi \
if [ -z "$url" ]; then \
error "cannot determine svn url" \
fi \
- echo "Found svn url: $url" \
+ echo "Registering svn url: $url" \
mr config "$(pwd)" checkout="svn co $url $basedir" \
elif [ -d .git ]; then \
url=$(git-config --get remote.origin.url) \
if [ -z "$url" ]; then \
error "cannot determine git url" \
fi \
mr config "$(pwd)" checkout="svn co $url $basedir" \
elif [ -d .git ]; then \
url=$(git-config --get remote.origin.url) \
if [ -z "$url" ]; then \
error "cannot determine git url" \
fi \
- echo "Found git url: $url" \
+ echo "Registering git url: $url" \
mr config "$(pwd)" checkout="git clone $url $basedir" \
else \
error "unable to register this repo type" \
mr config "$(pwd)" checkout="git clone $url $basedir" \
else \
error "unable to register this repo type" \