• Q: For Git, I don’t use SSH but HTTPs with credentials, but I don’t want to enter them every time.
    • Solution: Use SSH. 🤓
      You can tell Git to store the credentials for a certain time. The following command sets the timeout to 1 hour.
git config --global credential.helper 'cache --timeout 3600'