Skip to content

Commit 10de86d

Browse files
luked99gitster
authored andcommitted
git-p4: correct --prepare-p4-only instructions
If you use git-p4 with the "--prepare-p4-only" option, then it prints the p4 command line to use. However, the command line was incorrect: the changelist specification must be supplied on standard input, not as an argument to p4. Signed-off-by: Luke Diamand <[email protected]> Acked-by: Pete Wyckoff <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent fdf96a2 commit 10de86d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git-p4.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1442,7 +1442,7 @@ def applyCommit(self, id):
14421442
print " " + self.clientPath
14431443
print
14441444
print "To submit, use \"p4 submit\" to write a new description,"
1445-
print "or \"p4 submit -i %s\" to use the one prepared by" \
1445+
print "or \"p4 submit -i <%s\" to use the one prepared by" \
14461446
" \"git p4\"." % fileName
14471447
print "You can delete the file \"%s\" when finished." % fileName
14481448

0 commit comments

Comments
 (0)