从 Bitbucket 存储库 powershell 克隆特定源
Clone a specific source from Bitbucket repository powershell
大家好我已经编写了一个 PowerShell 脚本来使用 PowerShell 脚本将存储库克隆到我的本地驱动器。
Function CloneBitBucket
{
[CmdletBinding()]
param (
[Parameter(Mandatory)]
[string] $sourceLocation,
[Parameter(Mandatory)]
[string] $localPath
)
git clone $sourceLocation $localPath
}
CloneBitBucket
这是在下载所有可用的项目,但我只想克隆一个特定项目而不是下载所有项目
每个存储库的项目
听起来您可能在一个存储库中有多个项目。
当每个项目都有自己的存储库时,Git 和 Mercurial 都可以更好地工作,而且它们都不能很好地支持仅克隆一个子目录。考虑以下答案。
Regarding Git:
The idea is not to store everything in one giant git repo, but build a small repo as a main project, which will reference the right commits of other repos, each one representing a project or common component of its own.
Regarding Mercurial:
you should create multiple repositories, one for each independent project as a start.
Mercurial commits are made an a repository-wide level and you cannot checkout just a single subdirectory. This is unlike Subversion which allows you to make in-consistent commits by commiting only some files, but then it also allows you to checkout just a single subdirectory.
我建议您将多项目存储库拆分为多个单项目存储库。它会让你以后省去很多麻烦。
使用 Git
进行稀疏结帐
但是,它 是 可以使用名为 sparse checkout 的东西检查具有 Git 的某些子目录。请注意,使用这种方法您的克隆仍将包含整个目录树。工作副本中显示的文件有什么变化。
稀疏签出有点麻烦,我认为这不是在单个存储库中处理多个项目的好方法,但如果您想使用它,它就在那里。
使用 Git
克隆单个分支
如果您只想克隆一个 分支 和 Git,您可以使用 --single-branch
和 --branch
选项来 git clone
:
git clone --single-branch --branch some-branch $sourceLocation $localPath
我怀疑可以更新您的 PowerShell 函数以支持第三个 $branchName
参数。
大家好我已经编写了一个 PowerShell 脚本来使用 PowerShell 脚本将存储库克隆到我的本地驱动器。
Function CloneBitBucket
{
[CmdletBinding()]
param (
[Parameter(Mandatory)]
[string] $sourceLocation,
[Parameter(Mandatory)]
[string] $localPath
)
git clone $sourceLocation $localPath
}
CloneBitBucket
这是在下载所有可用的项目,但我只想克隆一个特定项目而不是下载所有项目
每个存储库的项目
听起来您可能在一个存储库中有多个项目。
当每个项目都有自己的存储库时,Git 和 Mercurial 都可以更好地工作,而且它们都不能很好地支持仅克隆一个子目录。考虑以下答案。
Regarding Git:
The idea is not to store everything in one giant git repo, but build a small repo as a main project, which will reference the right commits of other repos, each one representing a project or common component of its own.
Regarding Mercurial:
you should create multiple repositories, one for each independent project as a start.
Mercurial commits are made an a repository-wide level and you cannot checkout just a single subdirectory. This is unlike Subversion which allows you to make in-consistent commits by commiting only some files, but then it also allows you to checkout just a single subdirectory.
我建议您将多项目存储库拆分为多个单项目存储库。它会让你以后省去很多麻烦。
使用 Git
进行稀疏结帐但是,它 是 可以使用名为 sparse checkout 的东西检查具有 Git 的某些子目录。请注意,使用这种方法您的克隆仍将包含整个目录树。工作副本中显示的文件有什么变化。
稀疏签出有点麻烦,我认为这不是在单个存储库中处理多个项目的好方法,但如果您想使用它,它就在那里。
使用 Git
克隆单个分支如果您只想克隆一个 分支 和 Git,您可以使用 --single-branch
和 --branch
选项来 git clone
:
git clone --single-branch --branch some-branch $sourceLocation $localPath
我怀疑可以更新您的 PowerShell 函数以支持第三个 $branchName
参数。