Git tips
Feb 4, 2021
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"
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"