Skip to content

Commit eac9a1a

Browse files
committed
Merge branch 'vl/typofix'
* vl/typofix: random typofixes (committed missing a 't', successful missing an 's')
2 parents 2ddc898 + f7e604e commit eac9a1a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

git-p4.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3168,7 +3168,7 @@ def rebase(self):
31683168
if os.system("git update-index --refresh") != 0:
31693169
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.");
31703170
if len(read_pipe("git diff-index HEAD --")) > 0:
3171-
die("You have uncommited changes. Please commit them before rebasing or stash them away with git stash.");
3171+
die("You have uncommitted changes. Please commit them before rebasing or stash them away with git stash.");
31723172

31733173
[upstream, settings] = findUpstreamBranchPoint()
31743174
if len(upstream) == 0:

git-svn.perl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1246,7 +1246,7 @@ sub cmd_rebase {
12461246
return;
12471247
}
12481248
if (command(qw/diff-index HEAD --/)) {
1249-
print STDERR "Cannot rebase with uncommited changes:\n";
1249+
print STDERR "Cannot rebase with uncommitted changes:\n";
12501250
command_noisy('status');
12511251
exit 1;
12521252
}

t/t7600-merge.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ test_expect_success 'merge c1 with c2 (squash)' '
316316

317317
test_debug 'git log --graph --decorate --oneline --all'
318318

319-
test_expect_success 'unsuccesful merge of c1 with c2 (squash, ff-only)' '
319+
test_expect_success 'unsuccessful merge of c1 with c2 (squash, ff-only)' '
320320
git reset --hard c1 &&
321321
test_must_fail git merge --squash --ff-only c2
322322
'

0 commit comments

Comments
 (0)