19 lines
321 B
Makefile
19 lines
321 B
Makefile
|
|
sync:
|
|
@dig +short vogsphere.baco.net A
|
|
@git add -A
|
|
@git status
|
|
@git commit -m 'commit'
|
|
@git push
|
|
|
|
42:
|
|
@dig +short vogsphere.baco.net A
|
|
@rsync --exclude '.*.swp' --exclude '.git' --exclude '.gitignore' --exclude '.DS_Store' -av ~/Piscine/ .
|
|
@git add -A
|
|
@git status
|
|
@git commit -m 'sync'
|
|
@git push
|
|
|
|
all: sync
|
|
|