可以在本地通过 fetch(获取) 与 merge (合并) 相同的分支的 change (变化) 来解决:
$ git fetch origin
# Fetches updates made to an online repository
$ git merge origin branch
# Merges updates made online with your local work
可以简单使用git pull 提交:
$ git pull origin branch
可以在本地通过 fetch(获取) 与 merge (合并) 相同的分支的 change (变化) 来解决:
$ git fetch origin
# Fetches updates made to an online repository
$ git merge origin branch
# Merges updates made online with your local work
可以简单使用git pull 提交:
$ git pull origin branch