Here Git push requires username and password I read how pushing/pulling to/from github do not enter login/passowrd any time running git command in command line.
I found next :
git config --global credential.helper 'cache --timeout 7200'
After enabling credential caching, it will be cached for 7200 seconds (2 hour).
I decided that 2 hours too small and tried to set cach 200 hours with command :
git config --global credential.helper 'cache --timeout 7200000'
I have Ubuntu 18 both at my local server and on remote server.
But when I run github next day(I think 10-12 hours passed) it did not work.
Does this cache option has some hours restrictions or what is the problem ?
Thanks!