git-p4: don't use name-rev to get current branch
authorLuke Diamand <luke@diamand.org>
Sat, 15 Apr 2017 10:36:09 +0000 (11:36 +0100)
committerJunio C Hamano <gitster@pobox.com>
Mon, 17 Apr 2017 04:13:26 +0000 (21:13 -0700)
commiteff451101dcdc6fe023861c6c02a9bacc43f372e
tree0b421a145c7ed74a7a2d3157d611a012d82bdfee
parent78871bf46f18cd92e744a993c1d6422ff30d8bca
git-p4: don't use name-rev to get current branch

git-p4 was using "git name-rev" to find out the current branch.

That is not safe, since if multiple branches or tags point at
the same revision, the result obtained might not be what is
expected.

Instead use "git symbolic-ref".

Signed-off-by: Luke Diamand <luke@diamand.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-p4.py
t/t9807-git-p4-submit.sh