工作区域
基本命令
创建本地仓库
$ git init
克隆远程仓库
$ git clone [url]
文件状态
git status [filename]
git status
提交文件
git add .
git commit -m "消息内容"
提交忽略
*.txt
!lib.txt
/temp
build/
doc/*.txt
doc/**/*.p
免密码登录
git config --global user.name 'xxx' //设置用户名
git config --global user.email 'xxx@gmail.com' //设置邮箱
ssh-keygen
ssh-keygen -t rsa
ssh-keygen -t rsa -b 2048 -C "<comment>"
分支操作
git branch
git branch -r
git branch [branch-name]
git checkout -b [branch]
$ git merge [branch]
$ git branch -d [branch-name]
$ git push origin --delete [branch-name]
$ git branch -dr [remote/branch]