Git常用命令
// 设置用户签名
git config --global user.name 用户名
// 设置用户签名
git config --global user.email 邮箱
// 初始化本地库
git init
// 查看本地库状态
git status
// 添加到暂存区
git add 文件名
// 提交到本地库
git commit -m "日志信息" 文件名
// 查看历史记录
git reflog 查看历史记录
// 版本穿梭
git reset --hard 版本号
分支操作
// 创建分支
git branch 分支名
// 查看分支
git branch -v
// 切换分支
git checkout 分支名
// 把指定的分支合并到当前分支上
git merge 分支名
远程仓库操作
// 查看当前所有远程地址别名
git remote -v
// 起别名
git remote add 别名 远程地址
// 推送本地分支上的内容到远程仓库
git push 别名 分支
// 将远程仓库的内容克隆到本地
git clone 远程地址
// 将远程仓库对于分支最新内容拉下来后与当前本地分支直接合并
git pull 远程库地址别名 远程分支名
标签:git,查看,别名,Git,本地,常用命令,远程,分支
From: https://www.cnblogs.com/sevenccode/p/17081712.html