微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

git-recall git 操作回顾工具

程序名称:git-recall

授权协议: MIT

操作系统: Linux

开发语言: SHELL

git-recall 介绍

git-recall 是一个简单方便的工具,可轻松的让你记住你所做的 git 操作。

使用方法

$ git recall   [-a <author name>] 
               [-d <days-ago>]
               [-f]
               [-h]
Options description:

-a - Restrict search for a specific user (use -a "all" for all users)
-d - display commits for the last n days
-f - Fetch the latest changes
-h - Show help screen

使用示例:

$ git recall
# By default (without options), the command will display commits from yesterday and
# for the current user.
$ git recall -d 5 -a "Doge"
# The command will show all Doge's commits from 5 days ago.

$ git recall -d 5 -a "all"
# The command will show commits of all contributors from 5 days ago.
$ git recall -f
# Fetch commits beforehand.

git-recall 官网

https://github.com/Fakerr/git-recall

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐