更新 - git-enterprise的已知问题。使用unuddle和subtree merge现在可以使用
我一直在使用Git在我的机器上进行本地开发。它从未被推到远程仓库。
我刚刚注册了关于企业git的帐户。我现在想将我的本地仓库导入到新创建的远程git仓库并保留历史记录。
尝试按照here回答,但收到
remote: error: refusing to update checked out branch: refs/heads/master
remote: error: By default, updating the current branch in a non-bare repository
remote: error: is denied, because it will make the index and work tree inconsistent
remote: error: with what you pushed, and will require 'git reset --hard' to match
remote: error: the work tree to HEAD.
remote: error:
remote: error: You can set 'receive.denyCurrentBranch' configuration variable to
remote: error: 'ignore' or 'warn' in the remote repository to allow pushing into
remote: error: its current branch; however, this is not recommended unless you
remote: error: arranged to update its work tree to match what you pushed in some
remote: error: other way.
remote: error:
remote: error: To squelch this message and still keep the default behaviour, set
remote: error: 'receive.denyCurrentBranch' configuration variable to 'refuse'.
然后尝试了
git clone repourl/project.git
cd project
git remote add other /tmp/myproject
git checkout master
git commit
git push
当我收到git commit
On branch master
nothing to commit (working directory clean)
执行git push receive
Everything up-to-date
虽然如果我做“ls”,我会看到我的所有文件。 如果我执行“git log”,我会看到我的版本历史记录。
答案 0 :(得分:0)
这不是一个简单的推动工作吗?
以下是我认为需要的内容:
git push <enterprise-remote-name> <branch-name>
会将您本地仓库上的指定分支推送到企业仓库,并将其提交历史记录。我没有使用过企业级git,但是我每天都使用github,上面的两个步骤就可以满足您的需求。
答案 1 :(得分:0)
切换到github和bitbucket私人回购。至少在我尝试的时候,enterprise-git太麻烦了
答案 2 :(得分:0)
以防有人在您负责远程服务器时寻找解决方案:使用git init --bare
而不是git init
初始化服务器的存储库。