Skip to content

Instantly share code, notes, and snippets.

View rdsngit's full-sized avatar

Ryan Davidson rdsngit

View GitHub Profile
@rdsngit
rdsngit / uncommit_and_stash.sh
Created August 10, 2023 09:07 — forked from garyharan/uncommit_and_stash.sh
How to stash your unpushed commits
$ git status
5 commits pending
$ git reset --soft HEAD~5 # where 5 is the number of commits you saw in the `git status`
$ git stash