1

我想在我的服务器上创建一个 git repo 以在推送后更新我的网站。我发现所有教程的第一步(例如:http: //developertheory.com/how-to-auto-deploy-apps-after-git-push/),是这个命令:

git init --bare

在接下来的步骤中,我应该输入以下命令:

git config core.worktree /path/to/git/deploy
git config core.bare false
git config receive.denycurrentbranch ignore

第二个命令 ( git config core.bare false) 将 repo 设置为 non-bare。为什么我们将 repo 初始化为裸机,然后将其设置为非裸机?!

4

1 回答 1

1
于 2013-02-15T19:19:17.113 回答