]>
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 (parent:
13edc14 )
+mr (0.33) UNRELEASED; urgency=low
+
+ * Add a push subcommand, which pushes committed changes for DCVS, and
+ does nothing for svn/cvs. Closes: #491865
+
+ -- Joey Hess <joeyh@debian.org> Tue, 22 Jul 2008 15:19:54 -0400
+
mr (0.32) unstable; urgency=low
* Include the right (v2) version of GPL in the source.
mr (0.32) unstable; urgency=low
* Include the right (v2) version of GPL in the source.
GIT_DIR="$MR_REPO" git commit -a "$@"
GIT_DIR="$MR_REPO" git push --all
GIT_DIR="$MR_REPO" git commit -a "$@"
GIT_DIR="$MR_REPO" git push --all
+git_fake_bare_push =
+ GIT_DIR="$MR_REPO" git push --all
+
git_fake_bare_record =
cd "$(git_get_worktree)"
GIT_DIR="$MR_REPO" git commit -a "$@"
git_fake_bare_record =
cd "$(git_get_worktree)"
GIT_DIR="$MR_REPO" git commit -a "$@"
git_svn_update = git svn fetch
git_svn_status = git status "$@" || true
git_svn_commit = git svn dcommit
git_svn_update = git svn fetch
git_svn_status = git status "$@" || true
git_svn_commit = git svn dcommit
+git_svn_push = git svn dcommit
git_svn_record = git commit -a "$@"
git_svn_diff = git diff "$@"
git_svn_log = git svn log "$@"
git_svn_record = git commit -a "$@"
git_svn_diff = git diff "$@"
git_svn_log = git svn log "$@"
The optional -m parameter allows specifying a commit message.
The optional -m parameter allows specifying a commit message.
+=item push
+
+Pushes committed local changes to the remote repository. A no-op for
+centralized revision control systems.
+
=item diff
Show a diff of uncommitted changes.
=item diff
Show a diff of uncommitted changes.
hg_record = hg commit -m "$@"
darcs_record = darcs record -a -m "$@"
hg_record = hg commit -m "$@"
darcs_record = darcs record -a -m "$@"
+svn_push = :
+git_push = git push "$@"
+bzr_push = bzr push "$@"
+cvs_push = :
+hg_push = hg push "$@"
+darcs_push = darcs push -a
+
svn_diff = svn diff "$@"
git_diff = git diff "$@"
bzr_diff = bzr diff "$@"
svn_diff = svn diff "$@"
git_diff = git diff "$@"
bzr_diff = bzr diff "$@"
# Teach mr to run a few git and svn specific commands.
svn_cleanup = svn cleanup "$@"
git_gc = git gc "$@"
# Teach mr to run a few git and svn specific commands.
svn_cleanup = svn cleanup "$@"
git_gc = git gc "$@"
-git_push = git push "$@"
-svn_push = :
git_tag = git tag -l
svn_tag = svn ls "$(LC_ALL=C svn info . | grep -i ^URL: | cut -d ' ' -f 2 | sed -e 's/trunk/tags/')"
git_tag = git tag -l
svn_tag = svn ls "$(LC_ALL=C svn info . | grep -i ^URL: | cut -d ' ' -f 2 | sed -e 's/trunk/tags/')"
+# I prefer to git-svn rebase to fetch
+git_svn_update = git svn rebase
# This hack is here because git pull stupidly outputs tag info to stderr.
# Shut it up but let real errors through, for use in cron.
quietupdate = mr -s -n update 3>&1 1>/dev/null 2>&3 | egrep -v '(storing tag|tag: )' || true
# This hack is here because git pull stupidly outputs tag info to stderr.
# Shut it up but let real errors through, for use in cron.
quietupdate = mr -s -n update 3>&1 1>/dev/null 2>&3 | egrep -v '(storing tag|tag: )' || true