使用
git log
时,我可以提供 --since=<date>
来限制日志提交比某个日期更新的内容。
通过
git branch -r
,我获得了所有远程分支。
如何获取贡献早于给定日期的分支列表,即包含比我感兴趣的日期更新的提交的所有分支?
或者,如果这很困难或不可能,仅尊重分支提示的日期可能就足够了。
如何获取贡献早于给定日期的分支列表,即包含比我感兴趣的日期更新的提交的所有分支?
git for-each-ref
来运行
git log -1 --since=<date> <branch>
对于您的存储库中的每个分支引用。如果此
git log
命令的输出非空,则相关分支包含比 <date>
更新的提交,并且您应该在列表中打印分支的名称;否则,它不会,你也不应该打印它的名字。
这是一个 shell 脚本,它接受一个参数,该参数应该是 Git 可以识别为日期的字符串(例如
2014/12/25 13:00
、3.months.ago
、yesterday
等),并列出所有“绿色分支”(因为缺乏更好的术语),即包含比指定日期更新的提交的本地分支。
#!/bin/sh
# git-greenbranch.sh
#
# List the local branches that contain commits newer than a specific date
#
# Usage: git greenbranch <date>
#
# To make a Git alias called 'greenbranch' out of this script,
# put the latter on your search path, and run
#
# git config --global alias.greenbranch '!sh git-greenbranch.sh'
if [ $# -ne 1 ]
then
printf "usage: git greenbranch <date>\n\n"
printf "For more details on the allowed formats for <date>, see the\n"
printf "'git-log' man page.\n"
exit 1
fi
testdate=$1
git for-each-ref --format='%(refname:short)' refs/heads/ \
| while read ref; do
if [ -n "$(git rev-list --max-count=1 --since="$testdate" $ref)" ]
then
printf "%s\n" "$ref"
fi
done
exit $?
(该脚本可在 GitHub 上的 jub0bs/git-aliases 获取。)
为了方便起见,您可以在用户级别定义一个运行相关脚本的 Git 别名(此处称为
greenbranch.sh
):
git config --global alias.greenbranch '!sh git-greenbranch.sh'
确保 shell 脚本位于您的路径上。
$ git clone https://github.com/git/git/
# go grab a cup o' coffee...
$ cd git
# check all remote branches out (for testing purposes)
$ git checkout -b maint origin/maint
$ git checkout -b next origin/next
$ git checkout -b pu origin/pu
$ git checkout -b todo origin/todo
$ git greenbranch "yesterday"
maint
master
next
pu
todo
$ git greenbranch "today"
$
这表明所有五个分支都包含“昨天”进行的提交,但没有一个包含“今天”进行的提交。
--simplify-by-decoration
仅列出具有直接引用的提交:
git log --oneline --decorate --branches --remotes --since=$date \
--simplify-by-decoration
从这里开始,这只是一个格式化问题。
您可以使用
在
some-branch
上显示最近提交的日期
git log -1 --format=format:%cd some-branch
此日期也可以以不同的格式打印,请参阅
--date
手册页上的 git log
选项。