很早之前就用过 Git,SVN。这样来回切换,一些命令总是忘或者弄混淆了,这里主要备忘一下。
1,通用配置
git config --global user.name “lulei”
git config --global user.email mill0426@163.com
2,下载远程仓库
2.1,直接下载
打开对应目录,直接clone
cd /Users/lulei/Work/GitWork
git clone https://github.com/miLLlulei/AnnotationProcessor.git
说明:会自动创建AnnotationProcessor目录的。
2.2,先 init,再关联远程仓库
打开对应目录,先 init,再关联远程仓库
cd /Users/lulei/Work/GitWork/AnnotationProcessor
git init
git remote add origin https://github.com/miLLlulei/AnnotationProcessor.git
git pull origin master
说明:origin:本地仓库名
master:远程分支名
3,分支
3.1,查看当前分支
git branch 或者 git branch -vv