Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Command

Description

git stash

git stash save <stash_name>

Stash your changes for later

git stash pop [ DON'T USE, USE APPLY ]Apply your stashed changes and remove from stash.
git stash listList all stashes
git stash apply <stash>Apply specific stashed changes to your local.
git stash branch <branch name>Create a branch from the stash


Tagging

Command

Description

git tag <tag>


Create tag

ex: git tag v0.2.0

git push origin --tags

Push tag to origin

Git Documentation

See Git Reference for more info.

...