Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> git pull與git fetch的區別

git pull與git fetch的區別

日期:2017/2/7 14:42:51      編輯:Linux教程
 

1.git pull
從遠程獲取最新版本合並到本地。
例如:

git pull origin master

2.git fetch
從遠程獲取最新版本到本地,但不合並,可以人工比較差異、合並。
例如:

git fetch origin master git log -p master..origin/master git merge origin/master
或者
git fetch origin master:temp git diff temp git merge temp

Copyright © Windows教程網 All Rights Reserved