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が初めてで、ただ学んでいます..
テストする github プロジェクトをセットアップし、ローカルで作業しています。
マスターから作業を行うべきではなく、プロダクションの準備ができている必要があると聞きました。だから私は次のことをしました
私はやった
git branch myfix git checkout
私の変更を行い、
git commit -a
しかし、コードを master ブランチに移動するように指示するにはどうすればよいでしょうか?
良い
git checkout
実際にあるはずです
git checkout myfix
実際にこれを行った場合は、コードを master ブランチに「移動」できます。
git checkout master git merge myfix