-3
如何將git clone
一個項目,然後cd
轉換成新創建的目錄中的一個動作?如何做一個git克隆並進入創建的目錄
git clone http//xxx (optional folder name)
cd <created directory>
我發現了幾個解決方案猛砸,像這樣的:在PowerShell中
A better way to do git clone
但沒有..
如何將git clone
一個項目,然後cd
轉換成新創建的目錄中的一個動作?如何做一個git克隆並進入創建的目錄
git clone http//xxx (optional folder name)
cd <created directory>
我發現了幾個解決方案猛砸,像這樣的:在PowerShell中
A better way to do git clone
但沒有..
這真的不是很複雜,把你引用的bash
溶液進入PowerShell的:
function Invoke-GitClone($url) {
$name = $url.Split('/')[-1].Replace('.git', '')
& git clone $url $name | Out-Null
Set-Location $name
}
你真的一天克隆很多次,值得花時間發佈這個任務離子? –