20 lines
280 B
Makefile
20 lines
280 B
Makefile
default: add commit push
|
|
|
|
status:
|
|
git status
|
|
|
|
add:
|
|
git add -A
|
|
|
|
commit:
|
|
git commit -m "More updates"
|
|
|
|
push:
|
|
git push
|
|
|
|
copy:
|
|
rsync -avu --exclude=.git ./ ~/public_html/documentation/
|
|
|
|
ubuntu:
|
|
sudo apt update && sudo apt upgrade && sudo apt dist-upgrade && sudo apt autoremove
|