1.git remote
- git remote -v| --verbose 查看仓库详细信息
- git remote add <name> <url> 关联远程库.如果你本地新建项目,需要关联远程的库就用这个命令
- git remote prune <name> 删除无用的远程库
- git remote show <reponame> 查看远程仓库信息
2.git branch
- git branch 查看本地分支
- git branch <branchname> 新建分支
- git branch -a|--all 查看远程+本地分支
- git branch -r|--remotes 查看远程分支
- git branch -b <branchname> 本地从现有分支新建分支并切换
- git branch <newbranch> <sourcebranch> 新建分支
- git branch -m <oldname> <newname> 分支重命名
- git branch -d|--delete 删除本地分支
- --merged 查看哪些分支已经被并入当前分支
- --no-merged 查看尚未合并的分支
3.项目初始化
git config --global user.name <name> # 配置用户名 git config --global user.email <email> # 配置邮箱 git init #本地添加.git目录,track项目
4.生成密钥
ssh-keygen -t rsa -C 'usertest@usertest'
5. push
- 本地分支推送到远程
git push origin localbranch
- 删除远程分支
$ git push origin :serverfix To git@github.com:schacon/simplegit.git - [deleted] serverfix
- 本地分支推送到远程
$git push origin <localbranch>:<remotebranch>
6. diff
- 比较两个分支的差异
$git diff branch1 branch2 --stat
- 比较两个分支某文件的差异
$git diff branch1 branch2 -- YOURFILE