I recently switched to synchronizing my repositories to https:// on GitHub (due to firewall issues), and it asks for a password every time.
Is there a way to cache t
You can use credential helpers.
git config --global credential.helper 'cache --timeout=x'
where x is the number of seconds.
x