Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I have n commits, how can I branch from the n-3 commit? I can see the hash of every commit.

share|improve this question

3 Answers

up vote 260 down vote accepted

You can create the branch via hash,

git branch branchname <sha1-of-commit>

or by using a symbolic ref.

git branch branchname HEAD~3
share|improve this answer
5  
To future help-seekers: as far as I can tell, git doesn't allow you to use short sha1 names for the first form -- you have to put the entire key. A bit frustrating until I figured that out. – Matt Fenwick Feb 26 at 16:07
3  
You can also use git checkout -b branchname <commit> – Ajedi32 Mar 13 at 13:58
3  
Git 1.8.2 let me use the short sha1 for the first form. – Dan Apr 9 at 20:52
1  
@MattFenwick Git will allow you to use shortened hashes everywhere a hash is allowed, as long as the shortened hash is ''unique'' in the repository. So if it didn’t work, try adding another character from the hash. – poke May 17 at 12:08
The shortened variant worked for me. So poke is correct. – boutta 2 days ago

I was able to do it like so:

git branch new_branch_name `git log -n 1 --skip 3 --format=%H`

Where you must enter the Skip value. 0 is the latest, 1 is the previous, 2 is the commit before that etc.

share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.