合并分支到主服务器时文件更改

时间:2013-09-10 14:31:52

标签: git

假设这种情况:

  1. 创建一个新分支:

    $ git checkout -b new_branch

  2. 更改file1和file2。

  3. 添加file1:

    $ git add file1

  4. 提交:

    $ git commit -m“已更改file1”

  5. 将新分支与master合并:

    $ git checkout master

    $ git merge new_branch

  6. file2会发生什么。将在主分支中更改?或者只在主分支中更改了添加和提交的更改?

1 个答案:

答案 0 :(得分:0)

如果file2没有添加到git,那么它不会在分支更改上发生变化。 Git只跟踪你添加到它的文件。