diff options
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 |
