Ich hatte ein lokales Git-Projekt, das ich zu Capitolit hinzufügen wollte. Anscheinend ist das schwer, also habe ich die Idee aufgegeben. Ich habe ein neues Gitolite-Repo erstellt, indem ich es zu gitolite-admin / conf / gitolite.conf hinzugefügt und die Änderungen festgeschrieben und vorangetrieben habe. Dann habe ich das neue Repo mit git clone git-noah:project-name
erfolgreich geklont . Ich habe dann alle Dateien und Ordner außer .git in den Projektnamenordner kopiert. Ich tat,
git add -A
git commit -a -m "Moved to new repo."
git push
Ich erhalte diesen Fehler:
warning: push.default is unset; its implicit value is changing in
Git 2.0 from 'matching' to 'simple'. To squelch this message
and maintain the current behavior after the default changes, use:
git config --global push.default matching
To squelch this message and adopt the new behavior now, use:
git config --global push.default simple
See 'git help config' and search for 'push.default' for further information.
(the 'simple' mode was introduced in Git 1.7.11. Use the similar mode
'current' instead of 'simple' if you sometimes use older versions of Git)
No refs in common and none specified; doing nothing.
Perhaps you should specify a branch such as 'master'.
fatal: The remote end hung up unexpectedly
error: failed to push some refs to 'git-noah:project-name'
git config
Anweisungen in der Nachricht ausführen .git help config
erklärt Ihnen die Unterschiede zwischen ihnen. Und Sie können diese Frage für weitere Informationen lesen .