From: Marius Storm-Olsen Date: Tue, 9 Oct 2007 14:16:09 +0000 (+0200) Subject: Add 'git-p4 commit' as an alias for 'git-p4 submit' X-Git-Tag: v1.5.4-rc0~373 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=a9834f58335b81f48e137beb33afb5bb799cdae8;p=git.git Add 'git-p4 commit' as an alias for 'git-p4 submit' Given that git uses 'commit', git-p4's 'sumbit' was a bit confusing at times; often making me do 'git submit' and 'git-p4 commit' instead. Signed-off-by: Marius Storm-Olsen Acked-By: Simon Hausmann Signed-off-by: Lars Hjemli Signed-off-by: Shawn O. Pearce --- diff --git a/contrib/fast-import/git-p4 b/contrib/fast-import/git-p4 index 557649a14..52cd2a46b 100755 --- a/contrib/fast-import/git-p4 +++ b/contrib/fast-import/git-p4 @@ -1651,6 +1651,7 @@ def printUsage(commands): commands = { "debug" : P4Debug, "submit" : P4Submit, + "commit" : P4Submit, "sync" : P4Sync, "rebase" : P4Rebase, "clone" : P4Clone,