Update managing-multiple-accounts.md#28447
Update managing-multiple-accounts.md#28447meowius merged 4 commits intogithub:mainfrom nodescout:patch-1
Conversation
Updating the windows shell command "credential-manager erase" to "credential-manager-core erase". On windows, the former returns "git: 'credential-manager' is not a git command."
|
Thanks for opening this pull request! A GitHub docs team member should be by to give feedback soon. In the meantime, please check out the contributing guidelines. |
Automatically generated comment ℹ️This comment is automatically generated and will be overwritten every time changes are committed to this branch. The table contains an overview of files in the Content directory changesYou may find it useful to copy this table into the pull request summary. There you can edit it to share links to important articles or changes and to give a high-level overview of how the changes in your pull request support the overall goals of the pull request.
fpt: Free, Pro, Team |
This comment was marked as spam.
This comment was marked as spam.
|
@nodescout Thanks so much for submitting a PR! I'll get this triaged for review ⚡ |
|
Thanks for opening a pull request! We've triaged this issue for technical review by a subject matter expert 👀 |
|
@nodescout Thanks so much for flagging this and taking the time to open a PR. I have a clarification for you from our Git team that requires a small edit to this PR if you're willing. Context: the correct command depends on which version of Git and Git Credential Manager you have installed. That means making a different edit to "Managing multiple accounts." Leave the resuable you edited as is (i.e., leave it as Instead, update the bullet preceding the reusable from this, as it reads currently:
to this, as it should read:
Let us know if you'd be willing to update this PR to reflect this. Thank you! |
…tead Reverted the changes made to managing-multiple-accounts.md as the necessary updates were made in a reusable component to address the feedback on Git Credential Manager usage. The relevant modifications have been made in the reusable component via commit [7f1eabd](https://github.com/nodescout/docs/commit/7f1eabd4e4d8e7f98d67fe379bf4b4ce704562ad).
|
Hi @meowius, I have made the requested updates to address the feedback regarding the Git Credential Manager usage. Instead of modifying the Please review the updates at your convenience and let me know if there are any further changes needed. Thank you for your feedback and guidance on this! |
|
Brilliant @nodescout, thanks so much for catching that this was part of a reusable and making the update. I"ll get this merged. Really appreciate your making the docs better for everyone! ⚡ |
|
Thanks very much for contributing! Your pull request has been merged 🎉 You should see your changes appear on the site in approximately 24 hours. If you're looking for your next contribution, check out our help wanted issues ⚡ |
Updating the Windows shell command "credential-manager erase" to "credential-manager-core erase". On Windows, the former returns "git: 'credential-manager' is not a git command."
Why:
The current command to clear the credential manager store is incorrect for Windows. It produces an error
git: 'credential-manager' is not a git command. See 'git --help'.Closes:
What's being changed (if available, include any code snippets, screenshots, or gifs):
Changing the following:
echo "protocol=https`nhost=github.com" | git credential-manager erase
-to-
echo "protocol=https`nhost=github.com" | git credential-manager-core erase
Check off the following:
I have reviewed my changes in staging, available via the View deployment link in this PR's timeline.
datadirectory.For content changes, I have completed the self-review checklist.