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 に答える