git常用命令

1、重置当前分支为远程内容

git reset --hard origin/test

2、从远程分支master检出到本地分支

git checkout -b master origin/master

等价于

git branch newBranch origin/newBranch
git checkout newBranch

你可能感兴趣的:(git)