我正在为开发,测试和生产环境使用单独的服务器。我在本地计算机上安装了git,并为每个环境分别设置了分支。如何使用GIT将代码从每个分支部署到各自的服务器?
仅供参考:服务器上未安装GIT。
提前致谢。
Simrat
答案 0 :(得分:-2)
你应该在服务器上安装git, 使用以下命令将代码推送到远程存储库
git push remote_repository_url branch_name
使用以下命令将代码从远程存储库获取或部署到相应的计算机。
git pull remote_repository_url branch_name
or
git fetch remote_repository_url branch_name
使用fetch命令避免合并
即使您可以使用 git clone 命令将特定分支从remote_repository(assembla)克隆到相应的服务器>
git clone --branch branch_name remote_repository_url