]>
git.madduck.net Git - code/myrepos.git/blobdiff - lib/vcsh
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:
#[$HOME/.config/vcsh/repo.d/zsh.git]
#checkout = vcsh clone git://github.com/RichiH/zshrc.git zsh
#[$HOME/.config/vcsh/repo.d/zsh.git]
#checkout = vcsh clone git://github.com/RichiH/zshrc.git zsh
-vcsh_test =
- test -d "$MR_REPO"/refs/heads && test -d "$MR_REPO"/refs/tags &&
- test -d "$MR_REPO"/objects && test -f "$MR_REPO"/config &&
- test "`GIT_CONFIG="$MR_REPO"/config git config --get vcsh.vcsh`" = true
+vcsh_test = perl:
+ -d "$ENV{MR_REPO}/refs/heads" && -d "$ENV{MR_REPO}/refs/tags" &&
+ -d "$ENV{MR_REPO}/objects" && -f "$ENV{MR_REPO}/config" &&
+ `GIT_CONFIG="$ENV{MR_REPO}"/config git config --get vcsh.vcsh` =~ /true/
vcsh_update = vcsh run "$MR_REPO" git pull "$@"
vcsh_update = vcsh run "$MR_REPO" git pull "$@"
-vcsh_status = vcsh run "$MR_REPO" git status -s "$@" || true
+vcsh_status = cd $(vcsh run "$MR_REPO" git config --get core.worktree); vcsh run "$MR_REPO" git status -s "$@" || true
vcsh_commit = vcsh run "$MR_REPO" git commit -a "$@" && vcsh run "$MR_REPO" git push --all
vcsh_commit = vcsh run "$MR_REPO" git commit -a "$@" && vcsh run "$MR_REPO" git push --all
vcsh_log = vcsh run "$MR_REPO" git log "$@"
vcsh_log = vcsh run "$MR_REPO" git log "$@"
+vcsh_run = vcsh run "$MR_REPO" "$@"
+
+vcsh_gc = vcsh run "$MR_REPO" git gc "$@"
+
vcsh_register =
url="`LC_ALL=C vcsh run "$MR_REPO" git config --get remote.origin.url`" || true
if [ -z "$url" ]; then
vcsh_register =
url="`LC_ALL=C vcsh run "$MR_REPO" git config --get remote.origin.url`" || true
if [ -z "$url" ]; then