Ich erhalte die Meldung "Das entfernte Ende hat unerwartet aufgelegt", wenn ich versuche, in ein dateibasiertes Repository zu pushen.
Schritte zur Reproduktion:
git init --bare hello.git
git clone hello.git
cd hello
cat>temp.txt
Hallo Welt
Strg+z
git add .
git commit
git push
Dies tritt unter Windows 7 mit Git 1.9.2.msysgit.0 auf
Wie kann ich in ein dateibasiertes Repository pushen?
Die Konfigurationsdatei in hello.git:
[core]
repositoryformatversion = 0
filemode = false
bare = true
symlinks = false
ignorecase = true
hideDotFiles = dotGitOnly