Advertisement
emanuele

git workflow

May 24th, 2013
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. /*
  2. Version 1
  3. */
  4. git clone https://github.com/ziycon/SMF2.1
  5. git checkout release-2.1
  6. git checkout -b my_fix
  7. // apply fix
  8. git commit -asm 'my fix applied'
  9. git push origin my_fix
  10.  
  11. /*
  12. Version 2
  13. */
  14. git clone https://github.com/ziycon/SMF2.1
  15. git checkout release-2.1
  16. git remote add ema https://github.com/emanuele45/playpen
  17. git fetch ema
  18. git checkout ema/install_fix
  19. git checkout -b ema_install_fix
  20. // apply fix
  21. git commit -asm 'my fix applied'
  22. git push origin ema_install_fix
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement