gpt4 book ai didi

git - 使用 posh-git 将远程名称添加到 PowerShell 提示符

转载 作者:太空狗 更新时间:2023-10-29 14:16:49 27 4
gpt4 key购买 nike

我正在使用 posh-git 将 git 信息添加到我的 PowerShell 提示符中。我想让我的提示包含远程存储库名称,如 the examples但找不到这样做的方法。

下面是我的个人资料和我的自定义提示:

function prompt {
$origLastExitCode = $LASTEXITCODE

$curPath = $ExecutionContext.SessionState.Path.CurrentLocation.Path
if ($curPath.ToLower().StartsWith($Home.ToLower())) {
$curPath = "~" + $curPath.SubString($Home.Length)
}

Write-Host "$env:UserName" -NoNewline -ForegroundColor Cyan
Write-Host "@" -NoNewline -ForegroundColor Yellow
Write-Host "$(hostname)" -NoNewline
Write-VcsStatus
Write-Host "`n$curPath" -NoNewline

$LASTEXITCODE = $origLastExitCode

" $('>' * ($nestedPromptLevel + 1)) "
}

Import-Module posh-git

$global:GitPromptSettings.BeforeText = " ("
$global:GitPromptSettings.AfterText = ")"
$global:GitPromptSettings.EnableWindowTitle = "posh-git ~"
$global:GitPromptSettings.EnableStashStatus = $true
$global:GitPromptSettings.BeforeStashText = " {"
$global:GitPromptSettings.AfterStashText = "}"
$global:GitPromptSettings.BeforeStashForegroundColor = "Yellow"
$global:GitPromptSettings.AfterStashForegroundColor = "Yellow"
$global:GitPromptSettings.BranchUntrackedSymbol = "::"
$global:GitPromptSettings.BranchGoneStatusSymbol = "~~"
$global:GitPromptSettings.BranchIdenticalStatusToSymbol = "=="
$global:GitPromptSettings.BranchAheadStatusSymbol = "<<"
$global:GitPromptSettings.BranchBehindStatusSymbol = ">>"
$global:GitPromptSettings.BranchBehindAndAheadStatusSymbol = "><"

这是结果:

spike@Jacob-Laptop (master == +0 ~1 -0 !)
~\Documents\Projects\GUI Utilities\batch-media-file-converter >

这就是我想要的:

spike@Jacob-Laptop [spikespaz/batch-media-file-converter] (master == +0 ~1 -0 !)
~\Documents\Projects\GUI Utilities\batch-media-file-converter >

最佳答案

我用下面的代码让它工作:

$remoteName = (git remote get-url origin).Split("/")

Write-Host $remoteName[-2] -NoNewline -ForegroundColor Cyan
Write-Host "/" -NoNewline -ForegroundColor Yellow
Write-Host $remoteName[-1] -NoNewline
Write-Host "]" -NoNewline -ForegroundColor Yellow

仅当当前目录是 git 目录时才必须执行。使用 Test-Path ".git" 检查。

命令 git remote get-url origin 返回远程 URL,例如 https://github.com/spikespaz/batch-media-file-converter。这可以在 / 字符处拆分,其中最后两个索引是 (user, repo)

我还通过使用正则表达式 (([^\/]*)\/([^\/]*)$) 提取用户和存储库名称来使其工作,但我假设拆分更快。

我看到的唯一问题是从命令返回的 URL 结尾可能有 .git 或其他内容。它也可以是 SSH 地址。我不使用这两种类型的 git 地址,所以如果有人发现这有问题请告诉我。

$remoteName = [regex]::match((git remote get-url origin), "([^\/]*)\/([^\/]*)$").Groups

Write-Host $remoteName[1] -NoNewline -ForegroundColor Cyan
Write-Host "/" -NoNewline -ForegroundColor Yellow
Write-Host $remoteName[2] -NoNewline
Write-Host "]" -NoNewline -ForegroundColor Yellow

这是完整代码: 查看编辑。

function Prompt() {
<...>
}

Import-Module posh-git

我仍然想知道在示例中它是如何完成的,而且我相信不管它是如何完成的,它都会更干净,所以我不会接受这个作为答案,而是将它留在这里作为一种解决方法。 编辑 2: 我暂时接受这个作为答案,因为我原以为会有其他人回应,但没有人回应。这是迄今为止我找到的唯一解决方案。

编辑:如果您喜欢这个配置文件配置,我已经做了一个 Gist ,每当我更改它时我都会更新它。 https://git.io/vAqYP

关于git - 使用 posh-git 将远程名称添加到 PowerShell 提示符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48726094/

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