episource / gitlab-api

Powershell fronted for gitlab's api. Fork of https://gitlab.com/tdemeester/GitLab-API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Project Title

PowerShell module to interact with Gitlab API without any dependency on a local git installation.

Getting Started

These instructions will get you a copy of the project up and running on your machine.

Installing

This Project is available trough the powershell gallery

Install module via the powershell gallery

Install-module GitLab-API

Usage

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

projects

retreive all accessible projects:

    Get-GitLabProject

Retrieve specific project

    Get-GitLabProject -projectid 20

Set project name

    Set-GitLabProject -projectid 20 -Name 'Awesome Project'

Contributing

Please read CONTRIBUTING.md if you want to contribute.

Versioning

SemVer is used for versioning. For the versions available, see the tags on this repository.

Authors

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE.md file for details

About

Powershell fronted for gitlab's api. Fork of https://gitlab.com/tdemeester/GitLab-API

License:MIT License


Languages

Language:PowerShell 100.0%