For many people, git is not working in the container. This is most likely due to a lack of global git configuration. To fix this, do the following:
If an incorrect git config already exists, first remove it with:
Then add the correct config:
git config --global user.name "John Doe"
git config --global user.email johndoe@example.com
Filling in your username and email where appropriate.
For many people,
gitis not working in the container. This is most likely due to a lack of global git configuration. To fix this, do the following:If an incorrect git config already exists, first remove it with:
Then add the correct config:
Filling in your username and email where appropriate.