I am a beginner in Git I get this strange behavior :
1 / When i push some code, Git says '=' is not an URL !!
git push -u origin master
---> fatal: '=' does not appear to be a git repository
2 / So i check the config, and i see 2 "push" URLs are equal to "="
git config --list
---> ...
remote.origin.url==
remote.origin.url==
[email protected]:<name>/<project>.git (push)
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
How can i correct that error ??? the.git/config file seems to be normal
=. Delete the wrong ones from whichever files they appear in, as in 1615903's answer.