gpt4 book ai didi

msysgit - 如何通过添加日期时间来配置 Git bash 提示?

转载 作者:行者123 更新时间:2023-12-04 23:59:06 27 4
gpt4 key购买 nike

我的 msysgit Git bash 命令行提示符现在看起来像这样:

GitUserName@WorkStationName WorkSpacePath (BranchName)

我想在该行前面有一个时间戳,例如 HH:mm ( hours:minutes )。

有谁知道我如何轻松做到这一点?

最佳答案

我发现使用文件 \Git\etc\profile.d\git-prompt.sh您可以添加如下所示的行以将日期时间添加到您的提示中
PS1="$PS1"'\[\033[35m\]\D{%F %T} ' (如 here 格式详细信息所示)

我的提示目前看起来像这样
2015-11-08 23:48:08 Sean@pc-01 /c/dev/projects

PS1='\[\033]0;$MSYSTEM:${PWD//[^[:ascii:]]/?}\007\]' # set window title
PS1="$PS1"'\n' # new line
PS1="$PS1"'\[\033[35m\]\D{%F %T} '
PS1="$PS1"'\[\033[32m\]' # change to green
PS1="$PS1"'\u@\h ' # user@host<space>
PS1="$PS1"'\[\033[35m\]' # change to purple
#PS1="$PS1"'$MSYSTEM ' # show MSYSTEM
PS1="$PS1"'\[\033[33m\]' # change to brownish yellow
PS1="$PS1"'\w' # current working directory
if test -z "$WINELOADERNOEXEC"
then
GIT_EXEC_PATH="$(git --exec-path 2>/dev/null)"
COMPLETION_PATH="${GIT_EXEC_PATH%/libexec/git-core}"
COMPLETION_PATH="${COMPLETION_PATH%/lib/git-core}"
COMPLETION_PATH="$COMPLETION_PATH/share/git/completion"
if test -f "$COMPLETION_PATH/git-prompt.sh"
then
. "$COMPLETION_PATH/git-completion.bash"
. "$COMPLETION_PATH/git-prompt.sh"
PS1="$PS1"'\[\033[36m\]' # change color to cyan
PS1="$PS1"'`__git_ps1`' # bash function
fi
fi
PS1="$PS1"'\[\033[0m\]' # change color
PS1="$PS1"'\n' # new line
PS1="$PS1"'$ ' # prompt: always $

注意:答案使用 $(/bin/date)对我不起作用,因为我认为我在路径上遇到了问题 \Git\usr\bin\date.exe

关于msysgit - 如何通过添加日期时间来配置 Git bash 提示?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13001902/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com