1. Git常用命令

命令作用
git config –global user.name 用户名设置用户签名
git config –global user.email 邮箱设置用户签名
git init初始化本地库
git status查看本地库状态
git add 文件名添加到暂存区
git commit -m “日志信息” 文件名提交到本地库(将会记录版本)
git reflog查看历史纪录
git log查看详细历史记录
git reset –hard 版本号版本穿梭

2. 分支的操作

命令作用
git branch 分支名创建分支
git branch -v查看分支
git checkout 分支名切换分支
git merge 分支名把指定的分支合并到当前分支上

3. 远程仓库操作

命令作用
git remote -v查看当前所有远程地址
git remote add 别名 远程地址添加远程仓库并为其起别名
git push 别名 分支推送本地分支上的内容到远程仓库
git clone 远程地址将远程仓库的内容克隆到本地

4. SSH连接远程仓库

添加SSH

1
ssh-keygen -t rsa -C "1362724990@qq.com"

检查SSH

1
ssh -T git@github.com