美文网首页
Git学习笔记1-命令行

Git学习笔记1-命令行

作者: 微笑吧_5464 | 来源:发表于2018-09-17 09:04 被阅读0次

    本地仓库常用命令

    • git :查看系统是否安装git
    • 设置全局属性,开始->Git CMD ->用户名和邮箱

    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

    相关文章

      网友评论

          本文标题:Git学习笔记1-命令行

          本文链接:https://www.haomeiwen.com/subject/gkbhnftx.html