Complete the command to cache your Git credentials temporarily.
git config --global credential.helper [1]The cache helper stores credentials in memory for a limited time, so you don't have to enter them repeatedly.
Complete the command to save Git credentials permanently in a plain text file.
git config --global credential.helper [1]The store helper saves credentials permanently in a plain text file in your home directory.
Fix the error in the command to use the Git Credential Manager on Windows.
git config --global credential.helper [1]On Windows, the correct helper is manager to use the Git Credential Manager.
Fill both blanks to configure Git to use the credential helper that stores credentials for 15 minutes.
git config --global credential.helper '[1] --timeout=[2]'
The cache helper can be configured with a timeout in seconds. 900 seconds equals 15 minutes.
Fill all three blanks to create a Git credential helper configuration that stores credentials permanently and sets the file path.
git config --global credential.helper '[1] --file=[2]/[3]'
The store helper saves credentials permanently. You can specify the file path with --file. Here, the file is ~/.git-credentials/credentials.