add git-re function

This commit is contained in:
Ray Elliott 2020-06-19 10:50:54 +01:00
parent 1e653af462
commit 9f992fef60
1 changed files with 13 additions and 4 deletions

View File

@ -52,6 +52,12 @@ alias dokku='ssh -t dokku@dokku.isnet.uk'
alias pacman='~/.src/archnews/archnews_wrap'
alias npm_real=$(command -v npm)
function npm {
echo "Please use Yarn instead!!"
echo " If you must use npm use: 'npm_real'"
}
# lf gets confused by TERMINFO env var when running in tmux
# https://github.com/gokcehan/lf/issues/138#issuecomment-464477665
if [ -n "$TERMINFO" ] ; then
@ -84,8 +90,11 @@ ytdl-ct-audio() {
ssh "youtube-dl@192.168.0.118 'screen -m -d ./download.sh --config-location ~/.config/youtube-dl/config-audio-only $1'"
}
alias npm_real=$(command -v npm)
function npm {
echo "Please use Yarn instead!!"
echo " If you must use npm use: 'npm_real'"
git-re() {
repo="$1"
dir="$2"
if [ -z "$dir" ] ; then
dir="$repo"
fi
git clone ssh://git@git.rayelliott.dev:3222/rayelliott/"$repo".git "$dir"
}