标签:恢复 pre 邮箱 工作区 工作 单行 远程操作 图形 ase
1、配置用户名和邮箱
git config --global user.name "your name" git config --global user.email "your email@email.com"
--global 参数表示当前机器都采用这个配置
2、初始化仓库并提交到版本库
git init // 初始化仓库 git add <file> // 添加到暂存区 git commit -m ‘描述信息‘ // 提交到本地版本库 git status // 查看本地仓库的状态 git diff <file> // 查看修改不同的地方 git rm --cached <file> // 从暂存区移除 git rm -f <file> // 连同文件也移除
3、查看历史记录
git log // 查看完整信息 git log --pretty=oneline // 单行 git log --graph --pretty=oneline // 图形化、单行 git reflog // 查看命令记录
4、重置版本及撤销
git reset --hard head^ // 回退到上一个版本 git reset --hard <commit id> // 回退到某个版本 git reset head <file> // 将暂存区的提交撤销回工作区 git checkout --file // 撤销工作区内容,保持和暂存区或版本库一致
5、远程操作
git remote add origin 远程仓库地址 // 添加远程地址 git clone 远程地址 // 克隆 git push -u origin <branch name>// 第一次推送master分支 git push origin <branch name> // 往后每次推送master分支 git pull origin <branch name> // 拉取
6、分支
git branch <branch name> // 创建分支 git checkout <branch name> // 切换分支 git branch // 查看分支 git merge <branch name> // 将制定分支合并到当前分支 git branch -d <branch name> // 删除分支
7、进度管理
git stash save ‘message‘ // 保存进度 git stash list // 查看保存 git stash pop <stash id> // 恢复进度,并删除保存 git stash apply <stash id> // 恢复进度,不删除保存 git stash drop <stash id> // 删除进度 git stash clear // 清除所有进度
8、整理本地分支
git rebase // 未push的本地分支可以被整理成一条直线
标签:恢复 pre 邮箱 工作区 工作 单行 远程操作 图形 ase
原文地址:https://www.cnblogs.com/lay2017/p/9738134.html