Download winstore from http://gitcredentialstore.codeplex.com
Copy git-credential-winstore.exe to where you have Git installed (usually at c:\Program Files\Git\)
TortoiseGit avoid login and passwd everytime
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: TortoiseGit avoid login
Finally add these lines from "TortoiseGit > Settings > Git > Edit local .gitconfig"
[credential]
helper = !'c:\\Program Files\\Git\\git-credential-winstore.exe'
[credential]
helper = !'c:\\Program Files\\Git\\git-credential-winstore.exe'
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: TortoiseGit avoid login
// whereever git-credential-winstore.exe has been placed[core]
repositoryformatversion = 0
filemode = false
bare = false
logallrefupdates = true
symlinks = false
ignorecase = true
hideDotFiles = dotGitOnly
[remote "origin"]
url = https://user@bitbucket.org/user/repository.git
fetch = +refs/heads/*:refs/remotes/origin/*
puttykeyfile =
[branch "master"]
remote = origin
merge = refs/heads/master
[user]
name = your name
email = your email
[credential]
helper = !'c:\\Program Files\\Git\\git-credential-winstore.exe'