Git tips

--

Stop input user name and password every time

Using the following to cache your credential for 2 hours. Of course, you can set it as 2000 hours by adding 3 more 0s.

git config --global credential.helper "cache --timeout 7200"

--

--

No responses yet