美文网首页
git基本命令集合一

git基本命令集合一

作者: one_mighty | 来源:发表于2017-03-26 22:20 被阅读0次

    1、创建仓库

    git init

    2、基本配置

    • 姓名:

    git config --global user.name “wit.wang"

    • 邮箱:

    git config --global user.email “wit.wang@qq.com”

    • 差异颜色显示:

    git config --global color.ui true

    • 设置别名:

    git config –global alias.it init

    3.对已修改文件作快照,并保存到暂存区域

    git add file.c

    4、将保存在暂存区的文件快照提交到版本库

    git commit –m “commit info”

    5.查看提交历史

    git log

    6.查看提交差异

    git diff

    7、查看状态

    git status

    8、查看某个提交具体修改

    git show

    9、克隆一个远程仓库:

    git clone repo_url

    10、从工作目录和暂存区中删除文件

     git rm –f file.c

    相关文章

      网友评论

          本文标题:git基本命令集合一

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