使用PowerShell获取当前git分支的名称仅显示Git中的当前分支

问题描述 投票:4回答:3

我希望能够从PowerShell脚本执行git命令,该脚本与我的git repo不在同一个文件夹中。

首先,我想检查当前的分支,如果它不是主要的,请尝试检查主机和拉主机。

到目前为止我做了什么:

function Get-ScriptDirectory {
    Split-Path $script:MyInvocation.MyCommand.Path
}

$currentPath = Get-ScriptDirectory
[string]$Path_GIT = "C:\Program Files\Git\git-cmd.exe"
$gitRepo = $currentPath + "\..\"
$nameCurrentBranch = & $Path_GIT git -C "$gitRepo" rev-parse --abbrev-ref HEAD

从文档herethis question的答案。

$gitRepo包含包含git repo的文件夹的路径。

我收到错误:

git-cmd.exe : fatal: Cannot change to 'C:\Users\MyName\Documents\Projects\MyProject\
Batchs\.." rev-parse --abbrev-ref HEAD': Invalid argument
At C:\Users\MyName\Documents\Projects\MyProject\Batchs\Publish.ps1:64 char:22
+ ... entBranch = & $Path_GIT git -C "$gitRepo" rev-parse --abbrev-ref HEAD ...
+                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (fatal: Cannot c...nvalid argument:String) [], RemoteException
    + FullyQualifiedErrorId : NativeCommandError

编辑:@ 4c74356b41命令后的新问题(使用Join-Path):我没有任何错误弹出窗口打开并关闭非常快,然后我的powershell脚本卡住了,好像它正在等待git-cmd.exe关。但是我看不到cmd git的窗户而且无法关闭它。

git powershell github
3个回答
9
投票

CD您的存储库文件夹

$branch= &git rev-parse --abbrev-ref HEAD 

from Show just the current branch in Git


1
投票

尝试加入路径

$gitRepo = Join-Path $currentPath ".." -Resolve

0
投票

使用psget安装posh-git插件,显示当前分支。如果你有最新的PowerShell,很可能已经安装了psget。如果你没有它,那么使用此命令获取它。

(new-object Net.WebClient).DownloadString("http://psget.net/GetPsGet.ps1") | iex

要安装posh-git,请使用以下命令:

Install-Module posh-git
© www.soinside.com 2019 - 2024. All rights reserved.