使用现有文件中的工作树创建裸仓库

时间:2012-06-27 02:28:42

标签: git deployment ssh

我的远程服务器上有一个已经工作的非git目录(/var/www/site1),我使用ftp对它进行了更改,但我想使用git。所以这就是我所做的:

cd ~/git/site1.git
git init --bare
cat > hooks/post-receive
#!/bin/sh
GIT_WORK_TREE=/var/www/site1 git checkout -f
$ chmod +x hooks/post-receive

如何将文件添加到git repo中,以便将文件拉到本地目录?我试过了:

git remote add ssh://root@remote:3756/git/site1.git site1
git pull site1 +master:refs/heads/master
fatal: Couldn't find remote ref master

我也尝试过:

git clone ssh://root@remote:3756/git/site1.git site1
Cloning into 'site1'...
warning: You appear to have cloned an empty repository.

我正在关注本教程:http://toroid.org/ams/git-website-howto

1 个答案:

答案 0 :(得分:1)

将文件下载到您的计算机,克隆存储库,将文件复制到存储库文件夹,提交文件,然后推送到服务器。如果您打算使用git将文件上传到网站,请不要使用git,因为文件不是直接可见的。