summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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