diff options
author | Marius Storm-Olsen <marius@trolltech.com> | 2007-10-09 16:16:09 +0200 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2007-10-15 21:30:31 -0400 |
commit | a9834f58335b81f48e137beb33afb5bb799cdae8 (patch) | |
tree | 12cb3f413725a587a5f3f4663b199e9cb0570bda | |
parent | 7c0d741a3e8db662419cc841e3068b2a8880a109 (diff) | |
download | git-a9834f58335b81f48e137beb33afb5bb799cdae8.tar.gz git-a9834f58335b81f48e137beb33afb5bb799cdae8.tar.xz |
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 <marius@trolltech.com>
Acked-By: Simon Hausmann <simon@lst.de>
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
-rwxr-xr-x | contrib/fast-import/git-p4 | 1 |
1 files changed, 1 insertions, 0 deletions
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, |