Git分支无法按预期工作

时间:2014-06-04 21:32:03

标签: git git-branch

我正在阅读本教程:http://gitref.org/branching/

据我了解,本教程说如果我在Branch A并进行一些更改,则不会影响其他分支。

所以我正在测试这个:

$ mkdir test
$ cd test/
$ git init
Initialized empty Git repository in /root/test/.git/
$ echo 'foo' > foo.txt
$ ls
foo.txt
$ git add *
$ git commit -m 'added foo.txt'
[master (root-commit) 25f6eb7] added foo.txt
1 file changed, 1 insertion(+)
create mode 100644 foo.txt
$ git branch testing # created a new branch
$ git branch
* master
  testing
# I am still in 'master' branch
$ echo 'bar' > bar.txt  # Add a file to 'master' branch
$ ls
bar.txt  foo.txt # makes sense, because we are in 'master'
$ git checkout testing # Let's go to 'testing' branch
Switched to branch 'testing'
$ git branch
  master
* testing
# OK, we are in 'testing'
$ ls
bar.txt  foo.txt # WHY??

所以,我改变了#master;'分支,它影响了测试'。这有什么问题?

PS:我的git版本1.7.10.4

2 个答案:

答案 0 :(得分:4)

切换分支时不会触及未跟踪(未提交)的文件。因此,您提交后所做的任何事情都不会受到分支更改的影响。

答案 1 :(得分:3)

Add a file to 'master' branch ---这是你的假设开始出错的一步。

通过使用echo 'bar' > bar.txt命令创建文件,不要将其添加到分支。

你应该暂存它并承诺这样做。

所以如果你:

git add bar.txt
git commit -m "Added a new file"

在结帐到testing之前,它会按预期运作。