新しいブランチを作成し、リポジトリを取得し、ファイルを変更してリポジトリにプッシュしたいと考えています。
これらのコマンドは正しい方法ですか?
git checkout -b marker_up_down //create a branch and make it as a default
git clone git@github.com:user/mygit.git // get the repository of mygit
「main.html」という名前のファイルを変更し、それをプッシュしたいので、次のようにします。
git add path/main.html
git commit // add a comment of this push
git push origin marker_up_down