diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-07-19 10:42:57 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-07-19 10:42:57 -0700 |
commit | e6d6911941fb0d078453a44ec840af57e6578676 (patch) | |
tree | bb8a8b4f865f731dfe4fff87a6b46e09aec55699 /git-p4.py | |
parent | Merge branch 'wk/doc-git-has-grown' into maint (diff) | |
parent | random typofixes (committed missing a 't', successful missing an 's') (diff) | |
download | tgif-e6d6911941fb0d078453a44ec840af57e6578676.tar.xz |
Merge branch 'vl/typofix' into maint
* vl/typofix:
random typofixes (committed missing a 't', successful missing an 's')
Diffstat (limited to 'git-p4.py')
-rwxr-xr-x | git-p4.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3168,7 +3168,7 @@ class P4Rebase(Command): if os.system("git update-index --refresh") != 0: die("Some files in your working directory are modified and different than what is in your index. You can use git update-index <filename> to bring the index up-to-date or stash away all your changes with git stash."); if len(read_pipe("git diff-index HEAD --")) > 0: - die("You have uncommited changes. Please commit them before rebasing or stash them away with git stash."); + die("You have uncommitted changes. Please commit them before rebasing or stash them away with git stash."); [upstream, settings] = findUpstreamBranchPoint() if len(upstream) == 0: |