mirror of
https://github.com/unman/shaker.git
synced 2024-10-01 01:25:41 -04:00
10 lines
141 B
Bash
10 lines
141 B
Bash
#!/bin/sh
|
|
|
|
[ -n "$1" ] || exit 1
|
|
|
|
if [ "$1" = "sg" ]; then
|
|
git remote add $1 "ext::git-qrexec sys-git 3 `basename $PWD`"
|
|
exit $?
|
|
fi
|
|
|