Skip to content

Commit 6880198

Browse files
authored
Merge pull request #915 from spacewander/typo
2 parents 687a560 + a424d09 commit 6880198

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

History.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@
220220

221221
* git-pr: emphasized that the remote is required when pulling multiple PRs.
222222
* Merge pull request #743 from spacewander/allow_multiple_pr
223-
* git-pr: accpeted multiple GitHub URL or ID with remote.
223+
* git-pr: accepted multiple GitHub URL or ID with remote.
224224
* git-pr: added <[remote]:pr number> option.
225225
* Merge pull request #740 from spacewander/tweak_man_readme
226226
* doc: clarify the current working directory when building the docs.

bin/git-delete-tag

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
# Assert there is at least one tag provided
44
test -z $1 && echo "tag required." 1>&2 && exit 1
55

6-
# Detect the defalt remote exists or not
7-
defualt_remote=$(git config git-extras.default-remote)
6+
# Detect the default remote exists or not
7+
default_remote=$(git config git-extras.default-remote)
88

9-
if [[ -n "$defualt_remote" ]]; then
10-
origin="$defualt_remote"
9+
if [[ -n "$default_remote" ]]; then
10+
origin="$default_remote"
1111
else
1212
origin=origin
1313
fi

0 commit comments

Comments
 (0)