-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gcm: rename entry executable to drop -core suffix
Rename the main entry executable from git-credential-manager-core(.exe) to simply git-credential-manager(.exe), now that the older GCM4W has been removed from the Git for Windows project as an option (and the GCMC project has been renamed). We do not rename the Debian package ID, nor the Homebrew Cask name yet as this will require more thought for migration.
- Loading branch information
1 parent
fb52269
commit a34ee31
Showing
24 changed files
with
93 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,7 +70,7 @@ In advanced scenarios (such as using multiple accounts) you can interact with | |
and manage remembered user accounts using the 'azure-repos' provider command: | ||
|
||
```shell | ||
git-credential-manager-core azure-repos [ list | bind | unbind | ... ] <options> | ||
git-credential-manager azure-repos [ list | bind | unbind | ... ] <options> | ||
``` | ||
|
||
##### Listing remembered accounts | ||
|
@@ -79,7 +79,7 @@ You can list all bound user accounts by Git Credential Manager for each Azure | |
DevOps organization using the `list` command: | ||
|
||
```shell | ||
$ git-credential-manager-core azure-repos list | ||
$ git-credential-manager azure-repos list | ||
contoso: | ||
(global) -> [email protected] | ||
fabrikam: | ||
|
@@ -105,7 +105,7 @@ the `.git/config` file. If there are local bindings in a repository you can show | |
them with the `list` command: | ||
|
||
```shell | ||
~/myrepo$ git-credential-manager-core azure-repos list | ||
~/myrepo$ git-credential-manager azure-repos list | ||
contoso: | ||
(global) -> [email protected] | ||
(local) -> [email protected] | ||
|
@@ -118,7 +118,7 @@ To create a local binding, use the `bind` command with the `--local` option when | |
inside a repository: | ||
|
||
```shell | ||
~/myrepo$ git-credential-manager-core azure-repos bind --local contoso [email protected] | ||
~/myrepo$ git-credential-manager azure-repos bind --local contoso [email protected] | ||
``` | ||
|
||
```diff | ||
|
@@ -132,7 +132,7 @@ inside a repository: | |
To have Git Credential Manager forget a user account, use the `unbind` command: | ||
|
||
```shell | ||
git-credential-manager-core azure-repos unbind fabrikam | ||
git-credential-manager azure-repos unbind fabrikam | ||
``` | ||
|
||
```diff | ||
|
@@ -151,7 +151,7 @@ To forget or remove a local binding, within the repository run the `unbind` | |
command with the `--local` option: | ||
|
||
```shell | ||
~/myrepo$ git-credential-manager-core azure-repos unbind --local contoso | ||
~/myrepo$ git-credential-manager azure-repos unbind --local contoso | ||
``` | ||
|
||
```diff | ||
|
@@ -170,7 +170,7 @@ To show which accounts are being used for each Git remote in a repository use | |
the `list` command with the `--show-remotes` option: | ||
|
||
```shell | ||
~/myrepo$ git-credential-manager-core azure-repos list --show-remotes | ||
~/myrepo$ git-credential-manager azure-repos list --show-remotes | ||
contoso: | ||
(global) -> [email protected] | ||
origin: | ||
|
@@ -208,7 +208,7 @@ The `list --show-remotes` command will show the user account specified in the | |
remote URL: | ||
|
||
```shell | ||
~/myrepo$ git-credential-manager-core azure-repos list --show-remotes | ||
~/myrepo$ git-credential-manager azure-repos list --show-remotes | ||
contoso: | ||
(global) -> [email protected] | ||
origin: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.