filter-branch: added missing warn function
--tag-name-filter may have failed before because warn is used for reporting but was not available. Signed-off-by: Steffen Prohaska <prohaska@zib.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>maint
parent
49aba0bb3a
commit
b5669a0504
|
@ -13,6 +13,10 @@ set -e
|
||||||
USAGE="git-filter-branch [-d TEMPDIR] [FILTERS] DESTBRANCH [REV-RANGE]"
|
USAGE="git-filter-branch [-d TEMPDIR] [FILTERS] DESTBRANCH [REV-RANGE]"
|
||||||
. git-sh-setup
|
. git-sh-setup
|
||||||
|
|
||||||
|
warn () {
|
||||||
|
echo "$*" >&2
|
||||||
|
}
|
||||||
|
|
||||||
map()
|
map()
|
||||||
{
|
{
|
||||||
# if it was not rewritten, take the original
|
# if it was not rewritten, take the original
|
||||||
|
|
Loading…
Reference in New Issue