Git Note

作者: 写给我的公主的简书 | 来源:发表于2017-04-15 14:13 被阅读0次

创建Git项目

  1. 创建仓库目录
    mkdir dir
  1. 初始化仓库
    git init

Git文件管理

  1. 把文件加入仓库
    git add demo.txt
  1. 提交到仓库
    git commit -m 注释

Git常用命令

  1. 查看Git状态
    git status
  1. 查看文件改动
    git diff demo.txt
  2. 查看Git提交日志
    git log
  3. 回滚
    回到上次提交 根据head来判断回滚版本
    head^:回滚到上次
    head^^:回滚到上上次
    head~100
    git reset --hard HEAD^
    回滚到 head_id 版本
    git reset --hard 3628164

相关文章

  • Git 常用命令

    Git Note 提交到版本库 git add . -> git commit -m "msg" git comm...

  • Git remove untracked files

    git-clean[https://git-scm.com/docs/git-clean]Note that th...

  • Git note

    note 参照 廖雪峰 的blog 初始一个 git 使用 git init 添加一个文件到git 库里 1. g...

  • GIT NOTE

    1.查看提交记录git log 常用:git status 2.版本回退上个版本 git resest --h...

  • Git Note

    branch rename git rebase

  • Git Note

    创建Git项目 创建仓库目录mkdir dir 初始化仓库git init Git文件管理 把文件加入仓库git ...

  • Using Beyond Compare with Versio

    Git 2.3 and newer (Note: Use bc3 on the command line for...

  • notecloud

    搭建note 1 --初始环境,启动容器 在服务器家目录拉取mynote代码: git clone git@git...

  • Note For Git(Updating)

    发现一个book 参考链接:http://gitbook.liuhui998.com/index.html fat...

  • git study note

    What's the backup after mis-pulled remote data to your lo...

网友评论

      本文标题:Git Note

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