美文网首页
git-extras部分命令使用

git-extras部分命令使用

作者: praycis | 来源:发表于2018-08-24 17:14 被阅读0次

how to use some of these tools

  • git setup instead of (git init, git add, git commit) You just need one command to complete these works
  • git ignore filename or path instead of (create a .gitignore file)
  • gst instead of (git status Paths with -a does not make sense)
  • gca 'message' instead of (git commit -m 'message')
  • ga . instead of (git add .)
  • git summary (get summary of this project)
  • git effort (get file's commit count and active days)
  • git effort --above 10 (get file more than 10 commits list)
  • touch history.md && git changelog (write commit record to history.md)
  • git info (get current project's info and git config info)

相关文章

  • git-extras部分命令使用

    how to use some of these tools git setup instead of (git ...

  • Shell编程-获取ping的平均值

    思路说明: 使用ping命令 通过grep命令获取rtt行 然后通过awk命令,使用“/”,进行分组,并获取全部分...

  • git-extras

    简介 GIT utilities 安装及更新 Commands 简介 https://github.com/tj/...

  • docker 常用命令

    这里仅列出部分的docker命令,关于docker,docker-compose的具体命令和参数,请在使用的使用查...

  • CentOS 使用 Docker 快速部署 MySQL + Ph

    准备部分 安装 Docker 安装命令如下,三选一 也可以使用国内 daocloud 一键安装命令: 使用yum ...

  • java高分局之jstat命令使用

    java高分局之jstat命令使用jstat命令可以查看堆内存各部分的使用量,以及加载类的数量。命令的格式如下: ...

  • Linux系统命令及其使用(部分)

    命令描述 man查看帮助手册说明信息 usage:语法格式[man 命令],查看指定命令的操作手册 --help查...

  • Ambari的安装

    准备工作 使用如下命令: 配置hosts 执行命令: 部分需要编辑vi /etc/sysconfig/networ...

  • docker-compose常用命令

    1.docker-compose的使用非常类似于docker命令的使用,但是需要注意的是大部分的compose命令...

  • linux常用命令

    第一部分:开始使用控制台 1.1 运行命令 ls命令ls命令用来显示目标列表,在Linux中是使用率较高的命令。l...

网友评论

      本文标题:git-extras部分命令使用

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