Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我从master创建了一个本地分支。
从那以后,起源发生了变化。
我怎样才能从原点拉到本地分支。
所以我有以下分支:
master f1.1
如何从远程源拉到 f1.1 以保持更新?
假设你在f1.1,并且你想从原始主分支中提取,你会这样做:
f1.1
git pull --rebase origin master
如果f1.1origin 上的分支发生了变化,它将是:
git pull --rebase origin f1.1