0

実際のものを追加する前に、gitでサンプルテストを行っています。

これが私がすることです:

enter code here
1) Create an empty git repository

$ mkdir git_trial2
$ cd git_trial2
$ git init (Creates a .git directory inside this)
$ cg-branch-add branch1 (Create a branch1 inside this git)
$ touch File1
$ echo "This is a test" >> File1

次に、File1 を branch1 に追加します。これを行う方法?

4

2 に答える 2

1

あなたはただすることができます

git checkout branch1
git add File1
git commit -am "added File1"
git checkout other_branch

File1はbranch1にのみ存在します

于 2011-06-30T11:04:45.040 に答える
1

不思議なcg-branch-addコマンドが何をするのかを本当に知る必要がありますが、ブランチを追加するだけだと仮定すると、git branchそのブランチに切り替えることから始める必要があります。

git checkout branch1

次に、ファイルを追加します。

git add File1

そしてそれをコミットします:

git commit
于 2011-06-30T11:04:46.690 に答える