diff options
| author | Jeff Carr <[email protected]> | 2024-12-17 06:36:00 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-17 06:36:00 -0600 |
| commit | 36073faed5babe12a4f1a34e7e74fe52516b8861 (patch) | |
| tree | e916ea5753a670a02b9b0be3fb9228a6a7e3e86f /Makefile | |
| parent | ac029ee52ce434adaf88f13fa6e45f9b3d30c275 (diff) | |
lots of changes here and in gitpb
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -2,7 +2,10 @@ VERSION = $(shell git describe --tags) BUILDTIME = $(shell date +%Y.%m.%d) all: install - forge + @echo make private # only the private ones + @echo make mine # just show my repos + @echo make restart # remove the repos.pb file + @echo make pull # run git pull on every repo vet: @GO111MODULE=off go vet @@ -37,6 +40,9 @@ private: install fix: install forge --fix --find-all +all: install + forge --find-all + git-reset: install forge --do-git-reset --find-all @@ -66,3 +72,8 @@ patches-localhost: install patches-list: install forge --list-patches --url "http://localhost:2233/" + +restart: + reset + rm ~/go/src/repos.pb + make config |
