Using Git on Linux has been a different experience for me. This issue first appeared to me on Visual Studio Code. The solution is quite simple, but sometimes it can take time to research and find such processes.
We will solve it with Git commands. Run the following command in your terminal. After this command, it will still ask for a password when you want to update in VS Code, but after this entry, it won't ask again.
git config --global credential.helper store
The purpose of this command, as you can guess, is to create a file in your home directory and store your Git user information.
🔥 Comments