项目开始:
本地创建文件夹:projectName
/projectName
git init //初始化git 此时文件夹内生产了.git
git remote add origin url //添加远程仓库地址
git fetch //拉取分支信息
git branch -a // 查看所有分支
git branch -D branch_name //删除本地分支
git push origin :remote_branch_name //删除远程分支(彻底删除)
git pull origin branch_name // 拉取相应名称的远程分支
git pull url //拉取远程代码 url 为具体代码库地址http://***.git
https还会遇到报错 SSL certificate problem unable to get local issuer certificate
执行 git config --global http.sslVerifyfalse
git fetch 参考: http://blog.csdn.net/a19881029/article/details/42245955