After cloning the Git repository from my remote server, I made some changes to my local copy. I would like to return these changes to the remote server, but I get an error message that does not provide any useful information:
fatal: read error: Invalid argument
(Ps. Both server and local repo work in Windows environments)
I tried:
git push git push origin git push origin master
Advancing the GUI version of Git gives the same useful error message.
EDIT After setting the environment variable GIT_TRACE = 1, I get a little more output:
C:\repo>git push --verbose setup: git_dir: .git setup: worktree: C:/repo setup: cwd: C:/repo setup: prefix: (null) trace: built-in: git 'push' '--verbose' Pushing to git:
Any thoughts?
source share