Git credential helper=wincred and osxchain on same machine
up vote
1
down vote
favorite
I have setting up a mac but I pushed some stuff to my github, and got a message about "wincred"
Looking at my git settings, I have:
credential.helper=osxkeychain
credential.helper=wincred
How could this be? And how can I fix it?
I've been looking for a solution but nothing seems to work
git macos github
add a comment |
up vote
1
down vote
favorite
I have setting up a mac but I pushed some stuff to my github, and got a message about "wincred"
Looking at my git settings, I have:
credential.helper=osxkeychain
credential.helper=wincred
How could this be? And how can I fix it?
I've been looking for a solution but nothing seems to work
git macos github
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I have setting up a mac but I pushed some stuff to my github, and got a message about "wincred"
Looking at my git settings, I have:
credential.helper=osxkeychain
credential.helper=wincred
How could this be? And how can I fix it?
I've been looking for a solution but nothing seems to work
git macos github
I have setting up a mac but I pushed some stuff to my github, and got a message about "wincred"
Looking at my git settings, I have:
credential.helper=osxkeychain
credential.helper=wincred
How could this be? And how can I fix it?
I've been looking for a solution but nothing seems to work
git macos github
git macos github
edited Nov 22 at 17:25
Christoph
2,71021540
2,71021540
asked Nov 22 at 15:35
Karma00
63
63
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
It's possible that you have two different credential helpers enabled in two different files. To see, run git config --show-origin -l
and find out where the two are located, and then remove the one that refers to wincred
.
Note that if you're using Homebrew to install Git, the osxkeychain
credential manager is set by that package. This is usually the right choice for macOS.
how can I delete that credential?
– Karma00
Nov 28 at 2:26
The Git command I specified lists the file that contains each option. You would edit that file with a text editor (e.g. vim, nano, emacs) and remove the line that sayshelper = wincred
(assuming you are indeed on a Mac).
– brian m. carlson
Dec 4 at 2:50
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
It's possible that you have two different credential helpers enabled in two different files. To see, run git config --show-origin -l
and find out where the two are located, and then remove the one that refers to wincred
.
Note that if you're using Homebrew to install Git, the osxkeychain
credential manager is set by that package. This is usually the right choice for macOS.
how can I delete that credential?
– Karma00
Nov 28 at 2:26
The Git command I specified lists the file that contains each option. You would edit that file with a text editor (e.g. vim, nano, emacs) and remove the line that sayshelper = wincred
(assuming you are indeed on a Mac).
– brian m. carlson
Dec 4 at 2:50
add a comment |
up vote
0
down vote
It's possible that you have two different credential helpers enabled in two different files. To see, run git config --show-origin -l
and find out where the two are located, and then remove the one that refers to wincred
.
Note that if you're using Homebrew to install Git, the osxkeychain
credential manager is set by that package. This is usually the right choice for macOS.
how can I delete that credential?
– Karma00
Nov 28 at 2:26
The Git command I specified lists the file that contains each option. You would edit that file with a text editor (e.g. vim, nano, emacs) and remove the line that sayshelper = wincred
(assuming you are indeed on a Mac).
– brian m. carlson
Dec 4 at 2:50
add a comment |
up vote
0
down vote
up vote
0
down vote
It's possible that you have two different credential helpers enabled in two different files. To see, run git config --show-origin -l
and find out where the two are located, and then remove the one that refers to wincred
.
Note that if you're using Homebrew to install Git, the osxkeychain
credential manager is set by that package. This is usually the right choice for macOS.
It's possible that you have two different credential helpers enabled in two different files. To see, run git config --show-origin -l
and find out where the two are located, and then remove the one that refers to wincred
.
Note that if you're using Homebrew to install Git, the osxkeychain
credential manager is set by that package. This is usually the right choice for macOS.
answered Nov 22 at 23:14
brian m. carlson
75618
75618
how can I delete that credential?
– Karma00
Nov 28 at 2:26
The Git command I specified lists the file that contains each option. You would edit that file with a text editor (e.g. vim, nano, emacs) and remove the line that sayshelper = wincred
(assuming you are indeed on a Mac).
– brian m. carlson
Dec 4 at 2:50
add a comment |
how can I delete that credential?
– Karma00
Nov 28 at 2:26
The Git command I specified lists the file that contains each option. You would edit that file with a text editor (e.g. vim, nano, emacs) and remove the line that sayshelper = wincred
(assuming you are indeed on a Mac).
– brian m. carlson
Dec 4 at 2:50
how can I delete that credential?
– Karma00
Nov 28 at 2:26
how can I delete that credential?
– Karma00
Nov 28 at 2:26
The Git command I specified lists the file that contains each option. You would edit that file with a text editor (e.g. vim, nano, emacs) and remove the line that says
helper = wincred
(assuming you are indeed on a Mac).– brian m. carlson
Dec 4 at 2:50
The Git command I specified lists the file that contains each option. You would edit that file with a text editor (e.g. vim, nano, emacs) and remove the line that says
helper = wincred
(assuming you are indeed on a Mac).– brian m. carlson
Dec 4 at 2:50
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53434232%2fgit-credential-helper-wincred-and-osxchain-on-same-machine%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown