gitgit-track

How do I create a git branch so that files I add to it are not added to master?


I want to create a git branch that will work independent of the master branch. I want all the code that is present in the master till now, but any further changes in the master should not reflect in the branch and any changes in the branch should not reflect in the master.

I used this command to create branch:

git branch test

But any file I add in master, I can see in test. And any new file added in test, I can see in master. How to avoid this? I did not use any --track option while creating the branch.


Solution

  • What you've asked for is exactly what git branch test does (a point from which the two histories are no longer shared). There is two levels of confusion here though: