Remove 'credential-osxkeychain'

I tried adding 'credential-osxkeychain', after which I followed these steps , but it is not installed correctly. I don't want this anymore. How can I stop git from calling it (when I do pull)? Thank!

git pull git: 'credential-osxkeychain' is not a git command. See 'git --help'. Username for 'https://github.com': jzone3 Password for 'https://jzone3@github.com': git: 'credential-osxkeychain' is not a git command. See 'git --help'. 
+10
git credentials macos
Jul 31 '12 at 17:13
source share
3 answers

I ended up removing osxkeychain from the configuration file.

 git config --global --edit 
+19
Aug 01 '12 at 15:58
source share

It seems that MacPorts is being packaged by the keychain helper, and perhaps that is why it is not suitable for you as a recognized team.

You can install the assistant directly by following these instructions:

via: Magnus Johansson @ http://insomniacgeek.com/how-to-add-your-git-password-in-the-mac-osx-keychain/

In order not to enter a git-based password every time you perform a git operation, how can you save the git password in the Mac OSX keychain:

Make sure you already have the credential-osxkeychain helper key installed:

git credential-osxkeychain

If not, download and install it:

curl http://github-media-downloads.s3.amazonaws.com/osx/git-credential-osxkeychain -o git -credential-osxkeychain sudo mv git -credential-osxkeychain / usr / local / bin sudo chmod u + x / usr / local / bin / git -credential-osxkeychain

And do git with a helper:

git config --global credential.helper osxkeychain

+6
Feb 13 '13 at 5:25
source share

git config --global --remove-section credential

0
Oct 30 '17 at 20:18
source share



All Articles