powershell 获取多个GIT回购
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 获取多个GIT回购相关的知识,希望对你有一定的参考价值。
$ErrorActionPreference = "Stop"
Function FetchRepo($directory)
{
git -C $directory fetch
if ($LASTEXITCODE -gt 0)
{
Throw "Something went wrong while fetching $directory"
}
Write-Host -ForegroundColor green "fetched $directory"
}
Write-Verbose "Fetching all DXA repos"
FetchRepo(".\content-management")
FetchRepo(".\dd4t-java")
FetchRepo(".\html-design")
FetchRepo(".\installation")
FetchRepo(".\web-application")
FetchRepo(".\web-application-java")
以上是关于powershell 获取多个GIT回购的主要内容,如果未能解决你的问题,请参考以下文章
我可以使用git bash使用多个帐户吗?
React - 将应用程序分成多个 git repos
Git:将完整回购与另一个合并[重复]
推送所有Git回购
text 回购的Git
sh 重置Git回购