Git学习笔记1-命令行

本地仓库常用命令

  • git :查看系统是否安装git
  • 设置全局属性,开始->Git CMD ->用户名和邮箱
    • git config --global user.name "Your Name"
    • $ git config --global user.email "[email protected]"

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 回复到最新版本


    Git学习笔记1-命令行_第1张图片
    image.png

你可能感兴趣的:(Git学习笔记1-命令行)