fetch(Git)
fetch
加入遠端repo最新變更至本地repo
只會加進遠端repo的變更內容
不會將變更merge至目前的檔案裡
也可指定抓取特定branch的變更
或指定本地特地branch
git fetch [remote_repo] [remote_branch]:[local_branch]
新增本地branch
git fetch [remote_repo] :[branch_name]