配置 Git 以通知隐藏的更改
Configure Git to notify about stashed changes
是否可以配置 Git 以在我启动某些 Git 命令时提醒我我的存储空间不为空,比方说,当我切换分支时?
一些命令可以调用 githooks。
切换分支通常由git checkout <branch>
完成。挂钩 post-checkout
如果存在则调用,并且当 git checkout
为 运行 时可执行。复制以下脚本并粘贴到 .git/hooks/post-checkout
和 运行 chmod 755 .git/hooks/post-checkout
.
#!/bin/bash
oldrev=
newrev=
flag=
# list stashes if switching branches
if [[ "${flag}" = 1 ]];then
git stash list
fi
然后当你 运行 git checkout <branch>
时,git stash list
将是 运行 并打印存储条目(如果有的话)。
是否可以配置 Git 以在我启动某些 Git 命令时提醒我我的存储空间不为空,比方说,当我切换分支时?
一些命令可以调用 githooks。
切换分支通常由git checkout <branch>
完成。挂钩 post-checkout
如果存在则调用,并且当 git checkout
为 运行 时可执行。复制以下脚本并粘贴到 .git/hooks/post-checkout
和 运行 chmod 755 .git/hooks/post-checkout
.
#!/bin/bash
oldrev=
newrev=
flag=
# list stashes if switching branches
if [[ "${flag}" = 1 ]];then
git stash list
fi
然后当你 运行 git checkout <branch>
时,git stash list
将是 运行 并打印存储条目(如果有的话)。