You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Comrad/bin/comrad-update

18 lines
246 B
Bash

#!/bin/bash
# funcs (mac doesnt have realpath)
realpath() {
[[ $1 = /* ]] && echo "$1" || echo "$PWD/${1#./}"
}
path_repo="`realpath ~/comrad/code`"
wd=`pwd`
cd $path_repo
git pull
git add .
git commit -m 'comrad update!'
git push
cd $wd