gpt4 book ai didi

git - 如何进行git克隆并进入创建的目录

转载 作者:行者123 更新时间:2023-12-02 21:12:44 25 4
gpt4 key购买 nike

如何一次git clone一个项目,然后cd进入新创建的目录?

git clone http//xxx (optional folder name)
cd <created directory>

我在 Bash 中找到了几种解决方案,例如:
A better way to do git clone

但 PowerShell 中没有..

最佳答案

将您引用的 bash 解决方案转换为 PowerShell 确实不是很复杂:

function Invoke-GitClone($url) {
$name = $url.Split('/')[-1].Replace('.git', '')
& git clone $url $name | Out-Null
Set-Location $name
}

关于git - 如何进行git克隆并进入创建的目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32539250/

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