用中文比較方便...
Git.
如何看fetch 下來的檔案log
You can see the mapping that Git makes. The 'master' branch on the remote repository becomes a branch named 'github/master' locally. That way now I can merge the 'master' branch on that remote into my local 'master' branch by running
Git.
如何看fetch 下來的檔案log
You can see the mapping that Git makes. The 'master' branch on the remote repository becomes a branch named 'github/master' locally. That way now I can merge the 'master' branch on that remote into my local 'master' branch by running
git merge github/master. Or, I can see what new commits are on that branch by running git log github/master ^master
from: http://gitref.org/remotes/#fetch
