我想创建一个新分支,获取一个存储库,更改一个文件并将其推送到存储库。
这些命令是正确的方法吗?
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