#初めに
私のメモです。
1.現在のブランチ名で更新した内容に名前をつけて保存
$ git stash save "~"
2.ローカルリポジトリの更新 && 更新したいブランチ名を記載
$ git fetch && git checkout ~
3.保存したstashを適応し削除
git stash pop //popは削除で、applyは残す
Go to list of users who liked
More than 5 years have passed since last update.
#初めに
私のメモです。
1.現在のブランチ名で更新した内容に名前をつけて保存
$ git stash save "~"
2.ローカルリポジトリの更新 && 更新したいブランチ名を記載
$ git fetch && git checkout ~
3.保存したstashを適応し削除
git stash pop //popは削除で、applyは残す
Register as a new user and use Qiita more conveniently
Go to list of users who liked