diff options
| author | Jeff Carr <[email protected]> | 2024-12-18 22:02:07 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-18 22:02:07 -0600 |
| commit | 9adb650b3ed1a64a5207da04fe3c7e80b10cddd6 (patch) | |
| tree | 7a042622e7288c77e50d966b26a36ecf1406fa21 /Makefile | |
| parent | e30ef08c119ed4e539d3aac74c9d6010a95c9423 (diff) | |
add --dirtyv0.22.25
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -1,12 +1,14 @@ VERSION = $(shell git describe --tags) BUILDTIME = $(shell date +%Y.%m.%d) -all: +info: make private @echo "make restart # remove the repos.pb file" @echo "make private # only the private ones" @echo "make mine # just show my repos" + @echo "make all # show all repos" @echo "make pull # run git pull on every repo" + @echo "make dirty # CheckDirty()" vet: @GO111MODULE=off go vet @@ -62,6 +64,9 @@ pull: install mine: install forge --find-mine +all: install + forge --find-all + gui: install forge --do-gui @@ -74,6 +79,9 @@ patches-localhost: install patches-list: install forge --list-patches --url "http://localhost:2233/" +dirty: install + forge --dirty + restart: reset -rm ~/go/src/repos.pb |
