Git学习笔记1-命令行
2018-09-17 本文已影响0人
微笑吧_5464
本地仓库常用命令
- git :查看系统是否安装git
- 设置全局属性,开始->Git CMD ->用户名和邮箱
- git config --global user.name "Your Name"
- $ git config --global user.email "email@example.com"
cmd命令行
- git init 创建版本库
- git add hello.txt 将文件添加到暂存区
- git status 查看仓库状态
- git commit -m "create hello.txt file" 提交文件
- git status 查看仓库状态
- git diff 查看文件修改内容
- git log 查看从近到远的提交日志
- git log --pretty=online 简略显示
- git reflog 查看历史命令
- git reset --hard commit_id
- git rm hello.txt 删除文件
-
git checkout --hello.txt 回复到最新版本
image.png