Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am working on a branch of git which has two files A.c and B.c

I was creating patches which had changes made to both A.c and B.c

But Now I want all the changes made to B.c to be isolated from this branch and be created as a different branch, this branch should also have all the history of B.c

This looks like an obvious use case as we may decide in the middle that B.c is a much critical file so needs a different branch, as some one else may need to work on it.

share|improve this question
1  
Branches in Git are usually repository-level - that is, you don't usually create a separate branch just to track history for a particular file. – Amber Mar 12 '12 at 6:47
I mean I want to create a separate branch that contains B.c and it should also have the history of the file – raja Mar 12 '12 at 11:14
I don't understand why do you need that. Why would a “critical file” need its own branch? – svick Mar 12 '12 at 13:15
So that someone else can take over its development and it has been added by mistake, no needs to be seperated and at the same time history needs to be retained – raja Mar 12 '12 at 16:40
git reset HEAD^ – raja Mar 13 '12 at 11:23
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.