git远程登录相关记录
本地:ssh-keygen -t rsa –C “youremail@example.com”
Add SSH Key
create a new repo
本地:git remote add origin https://github.com/tugenhua0707/testgit.git
本地:git push -u origin master (-u 关联)
git checkout -b dev
创建并切换分支
git branch 查看当前分支
git branch -d dev
删除dev分支
git merge dev 合并指定分支到当前分支上