1、配置用户名和邮箱
git config --global user.name "test"
git config --global user.email "test@exemple.com"
2、克隆远端代码,此处为ssh
cd workspace
git clone ssh://git@exemple.com:22/~/test
3、查看分支
cd test
#查看本地分支
git branch
#查看远端分支
git branch -r
4、新建本地分支跟踪远端分支
git checkout --track origin/dev_v1
原创内容转载请保留出处GEEK笔记(http://www.geekapp.cn/)。