markdown 部署/推送到环境

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 部署/推送到环境相关的知识,希望对你有一定的参考价值。

```bash
cd ~/path-to-repo

git fetch && git status
git checkout <branch> #e.g. `CORE-4490` or `release/406`

# check latest state
git fetch && git status
  
# ** IF ** behind then...
  # Either
  git pull origin <branch>
  # or the following may be safer for branches such as master
  git reset --hard origin/<branch>
  
# update with latest master
git fetch
git merge origin/master

# push branch with latest master to origin
git push

# deploy to environment
git push -f origin HEAD:qa<env>

# Check #deploy and CodeShip
# Update the Environments spreadsheet

# **IF** the build fails on CodeShip then add an empty commit → deploy again
git commit --allow-empty -m "Empty Commit"
```

以上是关于markdown 部署/推送到环境的主要内容,如果未能解决你的问题,请参考以下文章

markdown git从本地推送到远程服务器

markdown 创建新的本地分支并推送到Github

markdown git将本地分支推送到新的远程分支

markdown 从本地分支推送到另一个远程分支(如果不退出则在远程创建新分支)

markdown 从本地分支推送到另一个远程分支(如果不退出则在远程创建新分支)

将应用程序部署到 Heroku 后无法推送到 Github