赞
踩
.git/config
[remote "origin"]
url = https://github.com/kanomoku/testGit.git
fetch = +refs/heads/*:refs/remotes/origin/*
Commit-ID
到「.git/FETCH_HEAD
」文件中git fetch
会拉取 所有远程仓库 的 所有远程分支 的 最新 Commit-ID
到「.git/FETCH_HEAD
」文件中。
若有多个分支则FETCH_HEAD
内会有多行数据,首行为 git fetch
时 所在分支 的同名远程分支。
git fetch
会拉取 远程仓库origin 的 所有远程分支 的 最新 Commit-ID
到「.git/FETCH_HEAD
」文件中。
若有多个分支则FETCH_HEAD
内会有多行数据,首行为 git fetch
时 所在分支 的同名远程分支。
git fetch origin master
会拉取 远程仓库origin 的 指定的远程分支master 的最新 Commit-ID 到「.git/FETCH_HEAD
」文件中。 FETCH_HEAD
内只有1行数据,记录的是 git fetch
时 指定的远程分支 的最新 Commit-ID
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。