1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-06 00:36:14 +02:00
git/contrib/remote-helpers
Sebastian Schuberth b8686c661d contrib: git-remote-{bzr,hg} placeholders don't need Python
It does not make sense for these placeholder scripts to depend on Python
just because the real scripts do. At the example of Git for Windows, we
would not even be able to see those warnings as it does not ship with
Python. So just use plain shell scripts instead.

Signed-off-by: Sebastian Schuberth <sschuberth@gmail.com>
Reviewed-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2017-03-03 11:09:34 -08:00
..
README
git-remote-bzr contrib: git-remote-{bzr,hg} placeholders don't need Python 2017-03-03 11:09:34 -08:00
git-remote-hg contrib: git-remote-{bzr,hg} placeholders don't need Python 2017-03-03 11:09:34 -08:00

The remote-helper bridges to access data stored in Mercurial and
Bazaar are maintained outside the git.git tree in the repositories
of their primary author:

    https://github.com/felipec/git-remote-hg (for Mercurial)
    https://github.com/felipec/git-remote-bzr (for Bazaar)

You can pick a directory on your $PATH and download them from these
repositories, e.g.:

  $ wget -O $HOME/bin/git-remote-hg \
    https://raw.github.com/felipec/git-remote-hg/master/git-remote-hg
  $ wget -O $HOME/bin/git-remote-bzr \
    https://raw.github.com/felipec/git-remote-bzr/master/git-remote-bzr
  $ chmod +x $HOME/bin/git-remote-hg $HOME/bin/git-remote-bzr