11 lines
99 B
Makefile
11 lines
99 B
Makefile
default: add commit push
|
|
|
|
add:
|
|
git add -A
|
|
|
|
commit:
|
|
git commit -m "More updates"
|
|
|
|
push:
|
|
git push
|