From 466f20e1c91c9900888b4b5871a100d7c6640421 Mon Sep 17 00:00:00 2001 From: John Bryan Sazon Date: Mon, 23 Jul 2018 00:23:28 +0100 Subject: [PATCH 1/4] Update installation guide [ci skip] --- README.md | 31 ++++++++++++++++++++++++++++--- 1 file changed, 28 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5bc4832..376009c 100644 --- a/README.md +++ b/README.md @@ -24,18 +24,40 @@ Get the download link of your preferred platform binary from [RELEASES](https:// ### OSX ```bash -curl -Lo gitlabctl https://github.com/devopsctl/gitlabctl/releases/download/${VERSION}/gitlabctl-darwin-amd64 && chmod +x gitlabctl && sudo mv gitlabctl /usr/local/bin/ +GITLABCTL_BIN_DIR=$HOME/.gitlabctl/bin + +mkdir -p $GITLABCTL_BIN_DIR && curl -Lo gitlabctl \ + https://github.com/devopsctl/gitlabctl/releases/download/v0.3.0/gitlabctl-darwin-amd64 \ + && chmod +x gitlabctl \ + && sudo mv gitlabctl $GITLABCTL_BIN_DIR + +export PATH=$PATH:$GITLABCTL_BIN_DIR + +# You can also append this export command in $HOME/.profile or similar SHELL file +# to make sure it is included in your `$PATH` variable +# automatically upon starting a new terminal session. ``` ### Linux ```bash -curl -Lo gitlabctl https://github.com/devopsctl/gitlabctl/releases/download/${VERSION}/gitlabctl-linux-amd64 && chmod +x gitlabctl && sudo mv gitlabctl /usr/local/bin/ +GITLABCTL_BIN_DIR=$HOME/.gitlabctl/bin + +mkdir -p $GITLABCTL_BIN_DIR && curl -Lo gitlabctl \ + https://github.com/devopsctl/gitlabctl/releases/download/v0.3.0/gitlabctl-linux-amd64 \ + && chmod +x gitlabctl \ + && sudo mv gitlabctl $GITLABCTL_BIN_DIR + +export PATH=$PATH:$GITLABCTL_BIN_DIR + +# You can also append this export command in $HOME/.profile or similar SHELL file +# to make sure it is included in your `$PATH` variable +# automatically upon starting a new terminal session. ``` ### Windows -Download the gitlabctl-windows-amd64.exe file, rename it to gitlabctl.exe and add it to your path. +Download the gitlabctl-windows-amd64.exe file, rename it to gitlabctl.exe and add it to your Windows System Environment Variable `%PATH%`. ### Auto Complete @@ -54,12 +76,15 @@ Using `gitlabctl login` to fetch personal access token ```bash gitlabctl login + >> Enter gitlab host url: http://localhost:10080 >> Enter gitlab username: root >> Enter gitlab password: ***** /Users/jb/.gitlabctl.yaml file has been created by login command ``` +__Windows Users:__ password masking does not work in Git bash. + Using environment variables. See `gitlabctl -h` ### Using the help commands From e12f23908eb4a323b6a8a0e72cfacc1db1e677d4 Mon Sep 17 00:00:00 2001 From: John Bryan Sazon Date: Mon, 23 Jul 2018 00:24:22 +0100 Subject: [PATCH 2/4] Remove sudo in installation guide [ci skip] --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 376009c..288fdeb 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ GITLABCTL_BIN_DIR=$HOME/.gitlabctl/bin mkdir -p $GITLABCTL_BIN_DIR && curl -Lo gitlabctl \ https://github.com/devopsctl/gitlabctl/releases/download/v0.3.0/gitlabctl-darwin-amd64 \ && chmod +x gitlabctl \ - && sudo mv gitlabctl $GITLABCTL_BIN_DIR + && mv gitlabctl $GITLABCTL_BIN_DIR export PATH=$PATH:$GITLABCTL_BIN_DIR @@ -46,7 +46,7 @@ GITLABCTL_BIN_DIR=$HOME/.gitlabctl/bin mkdir -p $GITLABCTL_BIN_DIR && curl -Lo gitlabctl \ https://github.com/devopsctl/gitlabctl/releases/download/v0.3.0/gitlabctl-linux-amd64 \ && chmod +x gitlabctl \ - && sudo mv gitlabctl $GITLABCTL_BIN_DIR + && mv gitlabctl $GITLABCTL_BIN_DIR export PATH=$PATH:$GITLABCTL_BIN_DIR From cf1700f70d36609759632a930abdde8b82849dc3 Mon Sep 17 00:00:00 2001 From: John Bryan Sazon Date: Thu, 19 Mar 2020 23:50:36 +0100 Subject: [PATCH 3/4] Update README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 288fdeb..02e74b8 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,11 @@ [![Go Report Card](https://goreportcard.com/badge/github.com/devopsctl/gitlabctl)](https://goreportcard.com/report/github.com/devopsctl/gitlabctl) [![Waffle board](https://badge.waffle.io/devopsctl/gitlabctl.png?columns=all)](https://waffle.io/devopsctl/gitlabctl) +# Note from the Author + +This project is currently not actively maintained. + + # [`gitlabctl`](https://devopsctl.github.io/gitlabctl/) Be a rockstar and efficiently manage your team's gitlab.org or [self-hosted Gitlab](https://about.gitlab.com/installation/) projects, groups, users and other resources. From 4c1f3db744dba1a3fbec2ef4694e2e38dd02e8c9 Mon Sep 17 00:00:00 2001 From: John Bryan Sazon Date: Tue, 23 Aug 2022 00:21:45 +0200 Subject: [PATCH 4/4] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 02e74b8..71062b8 100644 --- a/README.md +++ b/README.md @@ -3,9 +3,9 @@ [![Go Report Card](https://goreportcard.com/badge/github.com/devopsctl/gitlabctl)](https://goreportcard.com/report/github.com/devopsctl/gitlabctl) [![Waffle board](https://badge.waffle.io/devopsctl/gitlabctl.png?columns=all)](https://waffle.io/devopsctl/gitlabctl) -# Note from the Author +# NO MAINTENANCE NOTICE -This project is currently not actively maintained. +I don't maintain this repository anymore. Feel free to fork if needed. # [`gitlabctl`](https://devopsctl.github.io/gitlabctl/)