Skip to content

Commit

Permalink
feat(make): add stash/unstash (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfalkowski authored Apr 20, 2024
1 parent cff9786 commit f02e9d0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build/make/git.mak
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,11 @@ current:
# The last changes.
last:
git log -p -1

# Stash changes.
stash:
git stash

# Unstash changes.
unstash:
git stash pop

0 comments on commit f02e9d0

Please sign in to comment.