2022-11-05 06:24:27 +00:00
|
|
|
.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)
|
|
|
|
|
2022-11-05 21:57:18 +00:00
|
|
|
timeline-graph:
|
2022-11-05 06:24:27 +00:00
|
|
|
git log --graph --all --decorate --oneline
|
2022-11-05 21:57:18 +00:00
|
|
|
|
|
|
|
timeline:
|
|
|
|
git rev-list --all --remotes --pretty | less
|
|
|
|
|
|
|
|
timeline-short:
|
|
|
|
git log --format="format:%Cred%cd %Cblue%h %Cgreen%cn%Creset: %s" --all --date=iso-local
|