我为开发、测试和生产环境使用单独的服务器。我在本地机器上安装了 git,并且每个环境都有单独的分支。如何使用 GIT 将代码从每个分支部署到其各自的服务器?
仅供参考:GIT 未安装在服务器上。
提前致谢。
西姆拉特
我为开发、测试和生产环境使用单独的服务器。我在本地机器上安装了 git,并且每个环境都有单独的分支。如何使用 GIT 将代码从每个分支部署到其各自的服务器?
仅供参考:GIT 未安装在服务器上。
提前致谢。
西姆拉特
您应该在服务器上安装了 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