20 lines
283 B
Makefile
20 lines
283 B
Makefile
|
.PHONY: go everybody post refresh repost timeline
|
||
|
|
||
|
everybody:
|
||
|
./follow-everybody.bash
|
||
|
|
||
|
go: everybody refresh timeline
|
||
|
|
||
|
post:
|
||
|
git commit -m $(p) --allow-empty
|
||
|
git push
|
||
|
|
||
|
refresh:
|
||
|
git fetch --all
|
||
|
|
||
|
repost:
|
||
|
git cherry-pick $(p)
|
||
|
|
||
|
timeline:
|
||
|
git log --graph --all --decorate --oneline
|