有没有办法查看 .git 文件夹,并在它发生变化时更新我的​​ git 日志?

Is there a way to watch a .git folder, and update my git log whenever it changes?

我一直在尝试创建一个自动更新 git log --graph --no-pager。我使用 fswatch 取得了一些进步,但我 运行 发现我的 git 历史记录实际上比我的屏幕可以显示的要大。我尝试添加 | head -n $((`tput lines` - 1)) 但由于换行,输出仍然溢出。然后我尝试使用 tput rmam 来禁用换行,但现在我通常看不到 HEAD 指向的位置。

有人可以帮助我吗?理想情况下,我想删除 --no-pager,但我不知道如何使用 fswatch。这是我目前所拥有的:

function gwatch() {
  tput rmam
  location=$(git rev-parse --show-toplevel)
  clear;
  git --no-pager graph --color | head -n $((`tput lines` - 1));
  tput smam

  fswatch -or $location/.git | while read MODFILE
  do
    tput rmam
    clear;
    git --no-pager graph --color | head -n $((`tput lines` - 1));
    tput smam
  done
}

我有一个不如你优雅但简单的解决方案:使用 watch.

watch -n 1  "sh -c 'git log | head -n $(tput lines)'"

watch 将为您进行分页,但您将无法浏览日志。

但如果您需要,可以使用以下代码:

#!/bin/bash

gitwatch()
{
    while true; do
        sleep 3
        fswatch -xr $location/.git/objects | while read events; do
            if echo $events | grep -q Created; then
                pid=$(pgrep -t $(ps -o tty= -p $$) $PAGER)
                kill $pid
                break
            fi
        done
    done
}

location=$(git rev-parse --show-toplevel)

gitwatch &

while true; do
    git log
done

我放了一个 sleep 因为我们在 git 的一次修改中创建了多个文件。此代码需要更好的解决方案来捕获 git 中的修改,而不是监视所有 git 对象!

您可以使用 -o --event=Created 而不是 -x 然后 grepCreated。但是,这种方法响应速度较慢,而且似乎并非一直有效。