I am using git bash to for Git credentials on my Windows machine. Since the credentials are added and used automatically, is there a way to add more than one Git profile/credential in Git for Windows?
Asked
Active
Viewed 50 times
1 Answers
0
You can have a config per repo.
For your user info it would be user.name
and user.email
with no --gobal
issued from within the repo folder.
git config user.name "<name>"
git config user.email "<email>"

tymtam
- 31,798
- 8
- 86
- 126