美文网首页
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部分命令使用

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