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