@@ -70,7 +70,7 @@ In advanced scenarios (such as using multiple accounts) you can interact with
7070and manage remembered user accounts using the 'azure-repos' provider command:
7171
7272``` shell
73- git-credential-manager-core azure-repos [ list | bind | unbind | ... ] < options>
73+ git-credential-manager azure-repos [ list | bind | unbind | ... ] < options>
7474```
7575
7676##### Listing remembered accounts
@@ -79,7 +79,7 @@ You can list all bound user accounts by Git Credential Manager for each Azure
7979DevOps organization using the ` list ` command:
8080
8181``` shell
82- $ git-credential-manager-core azure-repos list
82+ $ git-credential-manager azure-repos list
8383contoso:
8484 (global) -> alice@contoso.com
8585fabrikam:
@@ -105,7 +105,7 @@ the `.git/config` file. If there are local bindings in a repository you can show
105105them with the ` list ` command:
106106
107107``` shell
108- ~ /myrepo$ git-credential-manager-core azure-repos list
108+ ~ /myrepo$ git-credential-manager azure-repos list
109109contoso:
110110 (global) -> alice@contoso.com
111111 (local) -> alice-alt@contoso.com
@@ -118,7 +118,7 @@ To create a local binding, use the `bind` command with the `--local` option when
118118inside a repository:
119119
120120``` shell
121- ~ /myrepo$ git-credential-manager-core azure-repos bind --local contoso alice-alt@contso.com
121+ ~ /myrepo$ git-credential-manager azure-repos bind --local contoso alice-alt@contso.com
122122```
123123
124124``` diff
@@ -132,7 +132,7 @@ inside a repository:
132132To have Git Credential Manager forget a user account, use the ` unbind ` command:
133133
134134``` shell
135- git-credential-manager-core azure-repos unbind fabrikam
135+ git-credential-manager azure-repos unbind fabrikam
136136```
137137
138138``` diff
@@ -151,7 +151,7 @@ To forget or remove a local binding, within the repository run the `unbind`
151151command with the ` --local ` option:
152152
153153``` shell
154- ~ /myrepo$ git-credential-manager-core azure-repos unbind --local contoso
154+ ~ /myrepo$ git-credential-manager azure-repos unbind --local contoso
155155```
156156
157157``` diff
@@ -170,7 +170,7 @@ To show which accounts are being used for each Git remote in a repository use
170170the ` list ` command with the ` --show-remotes ` option:
171171
172172``` shell
173- ~ /myrepo$ git-credential-manager-core azure-repos list --show-remotes
173+ ~ /myrepo$ git-credential-manager azure-repos list --show-remotes
174174contoso:
175175 (global) -> alice@contoso.com
176176 origin:
@@ -208,7 +208,7 @@ The `list --show-remotes` command will show the user account specified in the
208208remote URL:
209209
210210``` shell
211- ~ /myrepo$ git-credential-manager-core azure-repos list --show-remotes
211+ ~ /myrepo$ git-credential-manager azure-repos list --show-remotes
212212contoso:
213213 (global) -> alice@contoso.com
214214 origin:
0 commit comments