From 078ef162f41258f6fe55822d79caad0e9d467397 Mon Sep 17 00:00:00 2001 From: devlooped-bot Date: Thu, 17 Nov 2022 04:18:51 +0000 Subject: [PATCH] =?UTF-8?q?+M=E1=90=81=20includes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- readme.md | 23 +++++++++++- src/readme.md | 100 +++++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 121 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 9bf9a2a..12cc096 100644 --- a/readme.md +++ b/readme.md @@ -78,4 +78,25 @@ Options: -?, -h, --help Show help and usage information ``` - \ No newline at end of file + +# Sponsors + + +[![Clarius Org](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/clarius.png "Clarius Org")](https://github.com/clarius) +[![Christian Findlay](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/MelbourneDeveloper.png "Christian Findlay")](https://github.com/MelbourneDeveloper) +[![C. Augusto Proiete](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/augustoproiete.png "C. Augusto Proiete")](https://github.com/augustoproiete) +[![Kirill Osenkov](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/KirillOsenkov.png "Kirill Osenkov")](https://github.com/KirillOsenkov) +[![MFB Technologies, Inc.](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/MFB-Technologies-Inc.png "MFB Technologies, Inc.")](https://github.com/MFB-Technologies-Inc) +[![SandRock](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/sandrock.png "SandRock")](https://github.com/sandrock) +[![Andy Gocke](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/agocke.png "Andy Gocke")](https://github.com/agocke) +[![Shahzad Huq](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/shahzadhuq.png "Shahzad Huq")](https://github.com/shahzadhuq) + + + + +[![Sponsor this project](https://raw.githubusercontent.com/devlooped/sponsors/main/sponsor.png "Sponsor this project")](https://github.com/sponsors/devlooped) +  + +[Learn more about GitHub Sponsors](https://github.com/sponsors) + + diff --git a/src/readme.md b/src/readme.md index 342851b..ce5a9db 100644 --- a/src/readme.md +++ b/src/readme.md @@ -1,3 +1,101 @@ + +A dotnet global tool for managing Git credentials using the Microsoft Git Credentials Manager Core. - \ No newline at end of file +``` +Usage: + gcm [options] [command] + +Options: + --version Show version information + -?, -h, --help Show help and usage information + +Commands: + get Get a stored credential. + set Store a credential. + delete Delete a stored credential. +``` + +Note that all commands can operate on a simplified syntax using a full URI, which can include `username:password` +(as in the `set` command). That argument is converted to a `Uri` and the existing options are used as the default +value for required options that aren't provided. You can alternatively provide the individual options. + + +**get**: Get a stored credential. + +``` +Usage: + gcm [options] get [] + +Arguments: + A URL used to populate options from a single value: [protocol]://[host]/[path?] + +Options: + -p, --protocol (REQUIRED) The protocol over which the credential will be used (e.g., https). + -h, --host (REQUIRED) The remote hostname for a network credential. This can include the port number. + --path The path with which the credential will be used. E.g., for accessing a remote + https repository, this will be the repository's path on the server. + -?, -h, --help Show help and usage information +``` + +**set**: Store a credential. + +``` +Usage: + gcm [options] set [] + +Arguments: + A URL used to populate options from a single value: [protocol]://[user]:[password]@[host]/[path?] + +Options: + -s, --protocol (REQUIRED) The protocol over which the credential will be used (e.g., https). + -h, --host (REQUIRED) The remote hostname for a network credential. This can include the port number. + -u, --username (REQUIRED) The credential's username. + -p, --password (REQUIRED) The credential's password. + --path The path with which the credential will be used. E.g., for accessing a remote https repository, this + will be the repository's path on the server. + -?, -h, --help Show help and usage information +``` + +**delete**: Delete a stored credential. + +``` +Usage: + gcm [options] delete [] + +Arguments: + A URL used to populate options from a single value: [protocol]://[host]/[path?] + +Options: + -p, --protocol (REQUIRED) The protocol over which the credential will be used (e.g., https). + -h, --host (REQUIRED) The remote hostname for a network credential. This can include the port number. + --path The path with which the credential will be used. E.g., for accessing a remote https repository, this + will be the repository's path on the server. + -?, -h, --help Show help and usage information +``` + + + + + +# Sponsors + + +[![Clarius Org](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/clarius.png "Clarius Org")](https://github.com/clarius) +[![Christian Findlay](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/MelbourneDeveloper.png "Christian Findlay")](https://github.com/MelbourneDeveloper) +[![C. Augusto Proiete](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/augustoproiete.png "C. Augusto Proiete")](https://github.com/augustoproiete) +[![Kirill Osenkov](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/KirillOsenkov.png "Kirill Osenkov")](https://github.com/KirillOsenkov) +[![MFB Technologies, Inc.](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/MFB-Technologies-Inc.png "MFB Technologies, Inc.")](https://github.com/MFB-Technologies-Inc) +[![SandRock](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/sandrock.png "SandRock")](https://github.com/sandrock) +[![Andy Gocke](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/agocke.png "Andy Gocke")](https://github.com/agocke) +[![Shahzad Huq](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/shahzadhuq.png "Shahzad Huq")](https://github.com/shahzadhuq) + + + + +[![Sponsor this project](https://raw.githubusercontent.com/devlooped/sponsors/main/sponsor.png "Sponsor this project")](https://github.com/sponsors/devlooped) +  + +[Learn more about GitHub Sponsors](https://github.com/sponsors) + +