8 lines
127 B
Makefile
8 lines
127 B
Makefile
git-sync:
|
|
@echo "Doing GIT Dance"
|
|
git pull
|
|
git add .
|
|
git commit -m 'just sync'
|
|
git push
|
|
|
|
sync-git: git-sync |