Git asks for a password. Every time I want to complete and click on my project

I use Git in Visual Studio 2012 on Windows 8. Each time I want to complete and push my project into a bit bucket, it asks me for a password. How to keep it forever?

+4
source share
1 answer

As mentioned in related questions from @Cupcake's comment, you could clone your repo using SSH URLs and use SSH keys for authentication . You can then cache the SSH key password with Pageant .

Another option is to use credential assistants as described in this answer .

+3
source

Source: https://habr.com/ru/post/1501347/


All Articles