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

user811433 picture user811433 · Jan 27, 2012 · Viewed 8.2k times · Source

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.

Answer

Valerio picture Valerio · Apr 28, 2014

I think what you wanted was:

git checkout --orphan somebranch

this will create a somebranch with no history whatsoever, you can add which files you want to that one, and they might differ 100% from your previous branches.