11 lines
160 B
Makefile
11 lines
160 B
Makefile
|
|
sync:
|
|
@rsync --exclude .git --exclude .gitignore --exclude .DS_Store -av ~/Piscine/ .
|
|
@git add -A
|
|
@git status
|
|
@git commit -m 'sync'
|
|
@git push
|
|
|
|
all: sync
|
|
|