If I have n commits, how can I branch from the n-3 commit? I can see the hash of every commit.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can create the branch via hash,
or by using a symbolic ref.
|
|||||||||||||||
|
|
I was able to do it like so:
Where you must enter the Skip value. 0 is the latest, 1 is the previous, 2 is the commit before that etc. |
|||
|
|
|
I see that this is very old post... but just if some 1 search for same issue: If you are using eclipse then, Go to "Git Repository Exploring" Perspective. Then Expand "Tags" & choose the tag on which you want to create branch. Right click on tha selected tag & choose "Create Branch". Then provide name it will create local branch for you. Then whenever you Push your changes, your branch will be pushed to Remote Server. |
|||
|
|