Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 2nd, 2012  |  syntax: None  |  size: 0.41 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. git merging local branch with remote branch
  2. git checkout tag-1
  3.        
  4. Note: checking out 'tag-1'.
  5.  
  6. You are in 'detached HEAD' state. You can look around, make experimental
  7. changes and commit them, and you can discard any commits you make in this
  8. state without impacting any branches by performing another checkout.
  9.        
  10. git cherry-pick 6337dcb1
  11.        
  12. git checkout tag-1
  13.        
  14. git checkout -b branch-1 tag-1
  15.        
  16. git tag tag-2