git简单实用
Posted crazydemo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git简单实用相关的知识,希望对你有一定的参考价值。
git简单命令
git init 初始化
git add . 全部管理起来
git commit -m ‘创建第一个版本’
git config --global user.email "自己邮箱"
git config --global user.name "自己名字"
git status 查看当前文件夹状态
git log 查看日志
git reset --hard 版本号 回滚到上一个版本
git reflog 查看所有版本(包括回滚)
以上是关于git简单实用的主要内容,如果未能解决你的问题,请参考以下文章