I would like delete initial commits. To do this i create a new branch

clean repository
git reset --hard HEAD

create new reference
git symbolic-ref HEAD refs/heads/test
git rm --cached -r .
git commit --allow-empty -m "start"

re-sync working tree
git checkout -f master
git checkout test

now i would like get some commits form master branch into empty branch
git cherry-pick master

that don't work
I tried also 
git cherry-pick -Xtheirs master

with same result

i used msysgit 1.7.3.1 and 1.7.4

any ieda ?
Best Regards
Giuseppe Monteleone



-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/git-users/-/cUrngQGNrKsJ.
To post to this group, send email to git-users@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.

Reply via email to