Git Book: Difference between revisions

From Rixort Wiki
Jump to navigation Jump to search
(Created page with "Notes for upcoming book on Git. == Stashing changes == * <code>git stash</code> * <code>git stash pop</code> * Allows you to switch branches when you are mid-flow * Can move...")
 
No edit summary
Line 7: Line 7:
* Allows you to switch branches when you are mid-flow
* Allows you to switch branches when you are mid-flow
* Can move changes from one branch to another if you start work on the wrong branch
* Can move changes from one branch to another if you start work on the wrong branch
[[Category:Version Control]]
[[Category:Git]]

Revision as of 09:49, 18 June 2021

Notes for upcoming book on Git.

Stashing changes

  • git stash
  • git stash pop
  • Allows you to switch branches when you are mid-flow
  • Can move changes from one branch to another if you start work on the wrong branch