在公司的Android代碼目錄裏面,使用 git pull
命令,發現不會打印發生改變的文件信息。例如不會打印相似下面的信息:java
Fast-forward
res/values-zh-rCN/strings.xml | 5 +++--
res/values/strings.xml | 4 ++--
src/com/android/SoftwarePreferenceController.java | 2 +-
3 files changed, 6 insertions(+), 5 deletions(-)
複製代碼
可是以前公司的 git pull 命令會打印改動的文件信息,如今想要確認出現這種差別的緣由。android
通過排查,這是由於 git pull 執行的是 git rebase 所引發。
在git倉庫目錄下執行 git config -l
命令,看到有以下配置:git
pull.rebase=truebash
這是當前代碼目錄的git倉庫裏面自行配置的。使用 git config --global -l
查看沒有這個全局配置.fetch
查看 man git-config 命令的說明,pull.rebase=true 表示 git pull 使用 git rebase,而不是使用 git merge:spa
pull.rebase
When true, rebase branches on top of the fetched branch, instead of merging the default branch from the default remote when "git pull" is run.code
再查看 man git-rebase 命令的說明:xml
rebase.stat
Whether to show a diffstat of what changed upstream since the last rebase. False by default.rem
--stat
Show a diffstat of what changed upstream since the last rebase. The diffstat is also controlled by the configuration option rebase.stat.string
-n, --no-stat
Do not show a diffstat as part of the rebase process.
即,git rebase 默認不會打印發生變更的文件名。若是想要打印,須要添加 --stat
選項。
做爲對比,git merge 命令默認會打印修改先後的文件名。下面是 man git-merge 命令的說明:
--stat, -n, --no-stat
Show a diffstat at the end of the merge. The diffstat is also controlled by the configuration option merge.stat.
With -n or --no-stat do not show a diffstat at the end of the merge.
merge.stat
Whether to print the diffstat between ORIG_HEAD and the merge result at the end of the merge. True by default.
總的來講,git pull 命令實際上是先使用 git fetch 獲取遠端代碼,而後調用 git merge 把獲取到的遠端代碼合併到本地分支。若是提供了 --rebase 選項,會用 git rebase 來替代 git merge。配置 pull.rebase 爲true,git pull 默認會用 git rebase。
當 git pull 使用 git merge 時,默認會打印變更的文件信息。
而 git pull 使用 git rebase 時,默認不會打印變更的文件信息。
若是不肯定使用的是 git merge、仍是 git rebase,又想要每次執行 git pull 都能打印變更的文件信息,能夠加上 --stat
選項,例如 git pull --stat
。