在部署服务器上为nodejs初始化git

时间:2012-11-23 11:12:46

标签: linux git node.js ubuntu

我想创建一个带有nodejs应用程序的部署服务器。我将在我的Windows机器上编写nodejs代码并将其推送到该ubuntu linux服务器上。你能告诉我应该如何设置git来将新代码推送到这个代码中吗?

1 个答案:

答案 0 :(得分:1)

在服务器上设置git的最简单方法是在服务器上创建空的裸git存储库:

mkdir -p path/to/git/repos/myproject.git
cd path/to/git/repos/myproject.git
git init --bare

现在,返回Windows框并设置msysgit git command line客户端或TortoiseGit以通过ssh连接到Linux框。

您的目标是成功从服务器克隆空回购:

git clone ssh://username@server:/path/to/git/repos/myproject.git

完成此操作后,您可以git add将您的内容myproject移至目录git commit,然后git push,最后{{1}}。