mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 15:36:21 -04:00
6 lines
126 B
Bash
Executable file
6 lines
126 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
set -o pipefail
|
|
test $# -ne 0 || set -- '@{u}'
|
|
git format-patch --stdout "$@" | pastebinit -f diff
|