Skip to content
This repository was archived by the owner on Nov 9, 2017. It is now read-only.

Commit 0311086

Browse files
felipecgitster
authored andcommitted
contrib: remote-helpers: add move warnings (v2.0)
The tools are now maintained out-of-tree, and they have a regression in v2.0. It's better to start warning the users as soon as possible. Signed-off-by: Felipe Contreras <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 10e1fee commit 0311086

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

contrib/remote-helpers/git-remote-bzr

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ import re
4343
import StringIO
4444
import atexit, shutil, hashlib, urlparse, subprocess
4545

46+
sys.stderr.write('WARNING: git-remote-bzr is now maintained independently.\n')
47+
sys.stderr.write('WARNING: For more information visit https://github.com/felipec/git-remote-bzr\n')
48+
4649
NAME_RE = re.compile('^([^<>]+)')
4750
AUTHOR_RE = re.compile('^([^<>]+?)? ?[<>]([^<>]*)(?:$|>)')
4851
EMAIL_RE = re.compile(r'([^ \t<>]+@[^ \t<>]+)')

contrib/remote-helpers/git-remote-hg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ import atexit
2525
import urlparse, hashlib
2626
import time as ptime
2727

28+
sys.stderr.write('WARNING: git-remote-hg is now maintained independently.\n')
29+
sys.stderr.write('WARNING: For more information visit https://github.com/felipec/git-remote-hg\n')
30+
2831
#
2932
# If you want to see Mercurial revisions as Git commit notes:
3033
# git config core.notesRef refs/notes/hg

0 commit comments

Comments
 (0)