我最近才开始使用Git和Aptana
读到一些关于Git的东西,我发现我可以创建新的分支。我可以和Aptana一起做到这一点。
但我明白,如果我创建一个新的分支,我有一个单独的环境,我可以在其中工作而不照顾我所做的改变,因为这些改变不适用于我的主要源代码。
因此,我期望,如果在阿普塔纳,我转换了分支, 我打开的文件应该是特定分支的文件。
So if I have the file "A
" with "some content" in the master
branch, if I create a new branch (call it "testBranch
") and edit the file "A
" writing into it "Some new content", if I switch back to the master
branch and open the file A
it should contain again "some content".
If I open the same file from the testBranch
, instead I should find in it "Some new content".
Instead, using Aptana, I see the modified file also if I switch between branches.
But I think isn t this the way git s developers thought the tool.
我认为,如果我在master
分支文件“A
”中包含“某些内容”,而如果我切换到“testBranch
”文件“A”中包含“一些新内容”。
我错了吗 有什么我误会的吗