Skip to content

Commit c29512e

Browse files
committed
[draft] git send-email shortcut
1 parent 5637071 commit c29512e

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

git-send-email.sh

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#!/usr/bin/env bash
2+
# -*- coding: UTF-8 -*-
3+
if [[ $1 = "usb-serial" ]]; then
4+
echo "git send-email --annotate \
5+
--to=\"Johan Hovold <[email protected]>\" \
6+
--to=\"Greg Kroah-Hartman <[email protected]>\" \
7+
8+
$1"
9+
fi
10+
11+
if [[ $1 = "net" ]]; then
12+
echo "git send-email --annotate \
13+
--to=\"Bjørn Mork <[email protected]>\" \
14+
--to=\"David S. Miller <[email protected]>\" \
15+
--to=\"Jakub Kicinski <[email protected]>\" \
16+
17+
18+
$1"
19+
fi
20+

0 commit comments

Comments
 (0)