J'avais un projet local git que je voulais ajouter à gitolite. Apparemment c'est difficile alors j'ai abandonné l'idée. J'ai créé un nouveau dépôt gitolite en l'ajoutant à gitolite-admin/conf/gitolite.conf et en validant et en poussant les modifications. Puis j'ai cloné le nouveau repo avec git clone git-noah:project-name
avec succès. J'ai ensuite copié tous les fichiers et dossiers sauf le fichier .git dans le dossier nom du projet. J'ai fait,
git add -A
git commit -a -m "Moved to new repo."
git Push
Je reçois cette erreur:
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'
Il n'y a pas encore de maître dans le référentiel distant (Origin).
git Push Origin master
Après cette première poussée, vous pouvez utiliser le plus simple
git Push
Si vous utilisez git pour mettre en miroir, utilisez ceci:
git config remote.backup.mirror true