Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のように git ブランチを更新することを考えています。
git checkout master && git pull && git co - && git rebase master
オリジンから変更がプルされると、前のブランチが上書き'git co -'され、前のブランチに戻らなくなります。
'git co -'
(もちろん、ブランチの名前を使用することもできますが、エイリアスに変換できる一般的に適用可能なものを探しています。)
ブランチにとどまってやってみませんか
git fetch origin master && git rebase origin/master
すべてのブランチの切り替えについて心配する必要はありませんか?