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