10 lines
72 B
Makefile
10 lines
72 B
Makefile
#
|
|
GIT?= git
|
|
|
|
#
|
|
pull:
|
|
${GIT} pull -v
|
|
|
|
push:
|
|
${GIT} push origin master
|