标签:ref pretty log 说明 命令历史 bsp git log 添加 status
$ git init //将当前目录变成Git仓库;
$ git add <file> //把文件添加到仓库,前提是文件已添加至仓库目录;
$ git commit -m "description" // 提交更改,并告诉Git本次提交的说明;
$ git status //显示仓库目前的状态;
$ git diff <file> // 查看文件修改;
$ git log //查看历史记录,可加--pretty=oneline参数;
$ git reflog //查看命令历史;
$ git reset --hard commit_id // 版本回退,HEAD为当前版本,HEAD^为上一版本;
$ git checkout -- <file> //撤销修改;
标签:ref pretty log 说明 命令历史 bsp git log 添加 status
原文地址:https://www.cnblogs.com/jy-blog/p/12206879.html