summaryrefslogtreecommitdiff
path: root/git-stash.sh
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2017-09-10 17:02:56 +0900
committerLibravatar Junio C Hamano <gitster@pobox.com>2017-09-10 17:02:56 +0900
commit036e1274a2e230462ce7b201de760bb12260a516 (patch)
tree13a6ab085b6eb5888624a2bba7a140939280aaab /git-stash.sh
parentMerge branch 'ab/ref-filter-no-contains' into maint (diff)
parentscripts: use "git foo" not "git-foo" (diff)
downloadtgif-036e1274a2e230462ce7b201de760bb12260a516.tar.xz
Merge branch 'mf/no-dashed-subcommands' into maint
Code clean-up. * mf/no-dashed-subcommands: scripts: use "git foo" not "git-foo"
Diffstat (limited to 'git-stash.sh')
-rwxr-xr-xgit-stash.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-stash.sh b/git-stash.sh
index 5f09a47f0a..328cd80d83 100755
--- a/git-stash.sh
+++ b/git-stash.sh
@@ -580,7 +580,7 @@ apply_stash () {
if test -n "$u_tree"
then
- GIT_INDEX_FILE="$TMPindex" git-read-tree "$u_tree" &&
+ GIT_INDEX_FILE="$TMPindex" git read-tree "$u_tree" &&
GIT_INDEX_FILE="$TMPindex" git checkout-index --all &&
rm -f "$TMPindex" ||
die "$(gettext "Could not restore untracked files from stash entry")"