You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
422 B
422 B
Git Troubleshooting
Rights to access repo
- Symptom
- Cause
- Git has recently (due to a CVE) started caring about repository ownership
- Remedy
- Add the
repo to safe.directory
$ git config --global --add safe.directory '*' # For the current user and all repositories $ git config --system --add safe.directory '*' # For all users and all repositories - Add the