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 を使用するプロジェクトに取り組んでいます。私は現在 0.27.0.i1 ブランチにいます。そして、まだ master ブランチにコミットされていない変更がいくつかあります。これらの変更は、0.27.0.i1 から派生した新しい 0.27.0.i2 ブランチにコミットする必要があります。
0.27.0.i1 からの変更を隠して、隠した変更を 0.27.0.i2 ブランチに適用するにはどうすればよいですか。
やるだけ
git stash git checkout 0.27.0.i2 git stash pop git commit -a