0

我想创建一个新分支,获取一个存储库,更改一个文件并将其推送到存储库。

这些命令是正确的方法吗?

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
4

1 回答 1

1

我相信你想做的是

  1. 克隆远程存储库
    git clone git@github.com:user/mygit.git

  2. 创建一个分支
    git checkout -b marker_up_down

  3. 更改(编辑)您的文件

  4. 添加并提交您的文件
    git add path/main.html
    git commit

  5. 将更改推送到远程
    git push origin marker_up_down

于 2013-02-13T15:14:51.503 回答