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.
to much of a PITA to do this, since -t makes git-pull require the
repository and refspec be specified at the command line (which is a bug in
git (#456035). mr used to hardcode those to "origin" and "master", but
that's not always the right choice. So give up on forcing git to be sane
about pulling down all tags. It's insane. Live with it, or configure your
own update command.
mr (0.19) UNRELEASED; urgency=low
* Support versions of man that don't use -l.
mr (0.19) UNRELEASED; urgency=low
* Support versions of man that don't use -l.
+ * Updating git repos no longer uses git-pull -t by default. Git makes it
+ to much of a PITA to do this, since -t makes git-pull require the
+ repository and refspec be specified at the command line (which is a bug in
+ git (#456035). mr used to hardcode those to "origin" and "master", but
+ that's not always the right choice. So give up on forcing git to be sane
+ about pulling down all tags. It's insane. Live with it, or configure your
+ own update command.
-- Joey Hess <joeyh@debian.org> Tue, 04 Dec 2007 15:13:26 -0500
-- Joey Hess <joeyh@debian.org> Tue, 04 Dec 2007 15:13:26 -0500
Source: mr
Section: utils
Source: mr
Section: utils
Build-Depends: debhelper (>= 5), dpkg-dev (>= 1.9.0)
Maintainer: Joey Hess <joeyh@debian.org>
Standards-Version: 3.7.2
Build-Depends: debhelper (>= 5), dpkg-dev (>= 1.9.0)
Maintainer: Joey Hess <joeyh@debian.org>
Standards-Version: 3.7.2
test "`GIT_CONFIG="$MR_REPO"/config git config --get core.bare`" = true
svn_update = svn update "$@"
test "`GIT_CONFIG="$MR_REPO"/config git config --get core.bare`" = true
svn_update = svn update "$@"
-git_update = if [ "$@" ]; then git pull "$@"; else git pull -t origin master; fi
+git_update =
+ if [ "$@" ]; then
+ git pull "$@"
+ else
+ git pull
+ fi
bzr_update = bzr merge "$@"
cvs_update = cvs update "$@"
hg_update = hg pull "$@" && hg update "$@"
bzr_update = bzr merge "$@"
cvs_update = cvs update "$@"
hg_update = hg pull "$@" && hg update "$@"