Skip to content

Releases: clns/gitlab-cli

0.3.2

10 Jul 08:49
Compare
Choose a tag to compare

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

10 Apr 11:43
Compare
Choose a tag to compare

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

09 Feb 12:36
Compare
Choose a tag to compare

This release changes some flags in the commands, to make it easier to use:

  • add --from flag instead of specifying it as an argument in label copy cmd
  • change --replace to --name in label update cmd
  • change --regex to --match in label 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

17 Jun 13:32
Compare
Choose a tag to compare

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. Run sudo -i, then the commands described above, then exit.

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

05 May 13:25
Compare
Choose a tag to compare

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

0.1.0

27 Apr 15:07
Compare
Choose a tag to compare

First in-development release. Currently only a few commands are available, more will be added on request.