17 lines
259 B
Makefile
17 lines
259 B
Makefile
default: add commit push
|
|
|
|
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
|