以下のコマンドを実行するとstashに任意の名前をつけることができます。
git stash push -m "sample"
$ git stash list
stash@{0}: On main: sample
変更を適用するには以下のようにします。
$ git stash list
stash@{0}: On main: sample
$ git stash apply stash@{0}
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 1 year has passed since last update.
以下のコマンドを実行するとstashに任意の名前をつけることができます。
git stash push -m "sample"
$ git stash list
stash@{0}: On main: sample
変更を適用するには以下のようにします。
$ git stash list
stash@{0}: On main: sample
$ git stash apply stash@{0}
Register as a new user and use Qiita more conveniently
Go to list of users who liked