diff options
| author | Jeff Carr <[email protected]> | 2024-11-04 08:16:42 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-11-04 08:16:42 -0600 |
| commit | 9f7d0343397b0245fa0ba01cf488fa4bcca3bb5c (patch) | |
| tree | da6969039b184b246ceb0da5b19804d097e4d4cb /Makefile | |
| parent | d0e1372a6e70493debbf6b0595ac3b2cec3c0a2e (diff) | |
compliles and does stuff
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -40,3 +40,28 @@ redomod: rm -f go.* GO111MODULE= go mod init GO111MODULE= go mod tidy + +curl-help: + curl --silent http://localhost:9419/help + +curl-setBranchesToMasterB: + curl --silent http://localhost:9419/setBranchesToMasterB + +# report on the release +curl-findNext: + curl --silent http://localhost:9419/findNext + +# report on the release +curl-list-release: + curl --silent http://localhost:9419/releaselist?readonly=true + +#curl-doSingleRepo: +# curl --silent 'http://localhost:9419/doSingleRepo?repo=go.wit.com/gui&dryrun=false' + +# only show repos that need to be merged to the master branch +curl-list-changed: + curl --silent http://localhost:9419/list?perfect=false + +# include repos that you probably can't git push commits +curl-list-include-readonly: + curl --silent http://localhost:9419/list?readonly=true |
