Skip to content

replacing git stash save by git stash push #184

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jan 12, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions tips.json
Original file line number Diff line number Diff line change
Expand Up @@ -131,22 +131,23 @@
}, {
"title": "Saving current state of tracked files without commiting",
"tip": "git stash",
"alternatives": ["git stash save"]
"alternatives": ["git stash push"]
}, {
"title": "Saving current state of unstaged changes to tracked files",
"tip": "git stash -k",
"alternatives": ["git stash --keep-index", "git stash save --keep-index"]
"alternatives": ["git stash --keep-index", "git stash push --keep-index"]
}, {
"title": "Saving current state including untracked files",
"tip": "git stash -u",
"alternatives": ["git stash save -u", "git stash save --include-untracked"]
"alternatives": ["git stash push -u", "git stash push --include-untracked"]
}, {
"title": "Saving current state with message",
"tip": "git stash save <message>"
"tip": "git stash push -m <message>",
"alternatives": ["git stash push --message <message>"]
}, {
"title": "Saving current state of all files (ignored, untracked, and tracked)",
"tip": "git stash -a",
"alternatives": ["git stash --all", "git stash save --all"]
"alternatives": ["git stash --all", "git stash push --all"]
}, {
"title": "Show list of all saved stashes",
"tip": "git stash list"
Expand Down