PowerShell module to interact with Gitlab API without any dependency on a local git installation.
These instructions will get you a copy of the project up and running on your machine.
This Project is available trough the powershell gallery
Install module via the powershell gallery
Install-module GitLab-API
To use the module retrieve an (private) access key from your gitlab instance.
Add it to the local configuration
Add-GitLabToken -HostName <InstanceHostName> -Token <Access Token>
You can now use this module to its fullest
retreive all accessible projects:
Get-GitLabProject
Retrieve specific project
Get-GitLabProject -projectid 20
Set project name
Set-GitLabProject -projectid 20 -Name 'Awesome Project'
Please read CONTRIBUTING.md if you want to contribute.
SemVer is used for versioning. For the versions available, see the tags on this repository.
- Thijs de Meester - Initial work - tdemeester
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE.md file for details