I'm watching the free lecture on git.
The screen shows me the help message of git stash
(by git stash --help
). It appears in my terminal like below:
git stash [push [-p|--patch] [-k|--[no-]keep-index] [-q|--quiet]
[-u|--include-untracked] [-a|--all] [-m|--message <message>]
[--] [<pathspec>...]]
But in the lecture, they use save
as a substitute for push
. My git version is 2.17.1. Was there some change in the command syntax in git stash?