【发布时间】:2014-06-25 01:51:29
【问题描述】:
我有一个本地 git 项目,我想将它添加到 gitolite。显然这很难,所以我放弃了这个想法。我通过将它添加到 gitolite-admin/conf/gitolite.conf 并提交和推送更改来创建一个新的 gitolite 存储库。然后我用git clone git-noah:project-name 成功克隆了新的repo。然后,我将除 .git 之外的所有文件和文件夹复制到项目名称文件夹中。我做到了,
git add -A
git commit -a -m "Moved to new repo."
git push
我收到此错误:
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语句。git help config将为您解释它们之间的区别。您可以阅读this question 了解更多信息。 -
其实this question似乎是规范参考。