1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-02-22 12:58:33 +00:00

Merge pull request #597 from josephfrazier/readme-git_stash-typo

README.md: fix typo in git_stash description
This commit is contained in:
Vladimir Iakovlev 2017-01-30 13:00:42 +01:00 committed by GitHub
commit 1885196a11

View File

@ -187,7 +187,7 @@ using the matched rule and runs it. Rules enabled by default are as follows:
* `git_rm_recursive` – adds `-r` when you try to `rm` a directory;
* `git_rebase_merge_dir` – offers `git rebase (--continue | --abort | --skip)` or removing the `.git/rebase-merge` dir when a rebase is in progress;
* `git_remote_seturl_add` – runs `git remote add` when `git remote set_url` on nonexistant remote;
* `git_stash` – stashes you local modifications before rebasing or switching branch;
* `git_stash` – stashes your local modifications before rebasing or switching branch;
* `git_stash_pop` – adds your local modifications before popping stash, then resets;
* `git_tag_force` &ndash; adds `--force` to `git tag <tagname>` when the tag already exists;
* `git_two_dashes` &ndash; adds a missing dash to commands like `git commit -amend` or `git rebase -continue`;