Releases: clns/gitlab-cli
0.3.2
This release allows specifying a project in a subgroup (#10).
Installation
Linux & macOS
sudo -i # linux only
curl -L https://github.com/clns/gitlab-cli/releases/download/0.3.2/gitlab-cli-`uname -s`-`uname -m` -o /usr/local/bin/gitlab-cli
chmod +x /usr/local/bin/gitlab-cli
Windows
Windows doesn't have a user bin
directory so we'll download it in the current dir and execute it from there. In your PowerShell run:
Invoke-WebRequest -Uri "https://github.com/clns/gitlab-cli/releases/download/0.3.2/gitlab-cli-Windows-x86_64.exe" -OutFile "gitlab-cli.exe"
Optionally, move it to C:\Windows\System32
(or a different dir in your $PATH
) - you'll need Administrator rights:
Move-Item .\gitlab-cli.exe C:\Windows\System32\
0.3.1
This release includes:
- Label description isn't copied when copying labels (#8)
- Vendor external dependencies (to fix #6)
- Smaller tests changes
Installation
Linux & macOS
sudo -i # linux only
curl -L https://github.com/clns/gitlab-cli/releases/download/0.3.1/gitlab-cli-`uname -s`-`uname -m` -o /usr/local/bin/gitlab-cli
chmod +x /usr/local/bin/gitlab-cli
Windows
Windows doesn't have a user bin
directory so we'll download it in the current dir and execute it from there. In your PowerShell run:
Invoke-WebRequest -Uri "https://github.com/clns/gitlab-cli/releases/download/0.3.1/gitlab-cli-Windows-x86_64.exe" -OutFile "gitlab-cli.exe"
Optionally, move it to C:\Windows\System32
(or a different dir in your $PATH
) - you'll need Administrator rights:
Move-Item .\gitlab-cli.exe C:\Windows\System32\
0.3.0
This release changes some flags in the commands, to make it easier to use:
- add
--from
flag instead of specifying it as an argument inlabel copy
cmd - change
--replace
to--name
inlabel update
cmd - change
--regex
to--match
inlabel delete
cmd
Installation
Linux & macOS
sudo -i # linux only
curl -L https://github.com/clns/gitlab-cli/releases/download/0.3.0/gitlab-cli-`uname -s`-`uname -m` -o /usr/local/bin/gitlab-cli
chmod +x /usr/local/bin/gitlab-cli
Windows
Windows doesn't have a user bin
directory so we'll download it in the current dir and execute it from there. In your PowerShell run:
Invoke-WebRequest -Uri "https://github.com/clns/gitlab-cli/releases/download/0.3.0/gitlab-cli-Windows-x86_64.exe" -OutFile "gitlab-cli.exe"
Optionally, move it to C:\Windows\System32
(or a different dir in your $PATH
) - you'll need Administrator rights:
Move-Item .\gitlab-cli.exe C:\Windows\System32\
0.2.2
This release fixes a bug with sub-commands help not displaying, instead the main help was shown.
Installation
Linux & OS X
sudo curl -L https://github.com/clns/gitlab-cli/releases/download/0.2.2/gitlab-cli-`uname -s`-`uname -m` -o /usr/local/bin/gitlab-cli
sudo chmod +x /usr/local/bin/gitlab-cli
Note: If you get a "Permission denied" error, your
/usr/local/bin
directory probably isn't writable and you'll need to install gitlab-cli as the superuser. Runsudo -i
, then the commands described above, thenexit
.
Windows
Windows doesn't have a user bin
directory so we'll download it in the current dir and execute it from there. In your PowerShell run:
Invoke-WebRequest -Uri "https://github.com/clns/gitlab-cli/releases/download/0.2.2/gitlab-cli-Windows-x86_64.exe" -OutFile "gitlab-cli.exe"
Optionally, move it to C:\Windows\System32
(or a different dir in your $PATH
) - you'll need Administrator rights:
Move-Item .\gitlab-cli.exe C:\Windows\System32\
0.2.0
This release includes:
- ability to specify a GitLab login (user or email) and password instead of the private token
- URL shorthand
-u
was renamed into-U
, since-u
is now the shorthand for the user - new
update
command to allow easy updating - update notifier to notify if new updates are available