Advertisement
Guest User

Untitled

a guest
Apr 26th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. git checkout development //
  2. git cherry-pick a291a09745   // Oooh, nice move but he's looking at the wrong goal
  3. git status // Looking around he realizes he's shooting on the wrong goal
  4. git undo // Has no idea where to go
  5. git --help // Looks to the sidelines for help
  6. git backout // But ignores the coach!  
  7. git checkout -b hotfix // He begs the ref to pretend he was safe
  8. git push upstream hotfix // And just keeps going
  9. git cherry-pick a291a09745 // Really, what is he thinking? It was fun the first time?
  10. git commit --allow-empty // Yeah, sometimes I ignore street signs, too.
  11. git checkout development // Ok, turning in the right direction now
  12. git log // I think he might have the right idea!
  13. git reset 3a8d04312329e0642f... // He's finally made it back to the line of scrimmage!
  14. git checkout -b hotfix2 // Scooping up the ball, he runs downfield!
  15. git status // You can tell by the look on his face he can't believe he still has the ball
  16. git commit -a // He's in scoring range now
  17. git push upstream hotfix2 // Ooooh that isn't going to help
  18. git push // This isn't Lamaze class, buddy.
  19. git push origin hotfix2 // Goooooooaaaaaaalllll!!!!!!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement