Git没有推送我的文件

时间:2013-08-29 16:09:45

标签: git version-control push

我的笔记本电脑上有一个Git存储库,远处有一台服务器。

我是在服务器上做到的:

$ cd apps
$ mkdir my_beautiful_app
$ git init --bare

在我的笔记本电脑上,我这样做了:

$ cd beautiful_app_dir
$ git remote add website my_user@11.22.33.44:apps/my_beautiful_app
$ git push website master

好像它正在转移东西,所以我认为这是有效的。 但事实并非如此。在服务器上,在my_beautiful_app目录中,我没有项目文件的痕迹。现在我有很多我没有要求的文件和目录:

在服务器上:

$ ls ~/apps/my_beautiful_app
branches  config  description  HEAD  hooks  info  objects  refs

那是出乎意料的。 为什么我会遇到这种奇怪的行为?如何让服务器上的目录与我的本地目录同步?

编辑:

好的我尝试了同样的事情但没有--bare选项。这就是我得到的:

$ git push website master
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'.

1 个答案:

答案 0 :(得分:0)

您在服务器上看到的文件是存储库中通常为.git子目录的内容。您只有那些因为您创建了一个裸存储库 - 如果这不是您想要的,请从--bare中删除git init标记。

参见例如http://www.gitguys.com/topics/shared-repositories-should-be-bare-repositories了解更多信息。