summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-17 06:36:00 -0600
committerJeff Carr <[email protected]>2024-12-17 06:36:00 -0600
commit36073faed5babe12a4f1a34e7e74fe52516b8861 (patch)
treee916ea5753a670a02b9b0be3fb9228a6a7e3e86f /Makefile
parentac029ee52ce434adaf88f13fa6e45f9b3d30c275 (diff)
lots of changes here and in gitpb
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 12 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1e531ec..77343f9 100644
--- a/Makefile
+++ b/Makefile
@@ -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