Skip to content

Instantly share code, notes, and snippets.

@pmiossec
pmiossec / keybase.md
Created April 10, 2018 10:33
Keybase.io

Keybase proof

I hereby claim:

  • I am pmiossec on github.
  • I am pmiossec (https://keybase.io/pmiossec) on keybase.
  • I have a public key ASClURb8myHnIocARy4K995clSAQCJbaiBDzs34EooFHego

To claim this, I am signing this object:

@pmiossec
pmiossec / export_stashes.sh
Created August 1, 2022 08:43
Export all git Stashes
mkdir stashes
refs=$(git stash list|cut -d: -f1)
for ref in $refs; do git stash show "$ref" -p > ./stashes/$ref.patch; done
#refs=$(git rev-parse $refs|tac)
#oldpath=$PWD