git clone在指定位置
时间: 2023-09-20 09:13:57 浏览: 115
git clone下来的代码如何放在指定路径
引用\[1\]:之前git clone下来都只有创建子目录,比如说在/mnt/c下执行git clone https://github.com/aaa/bbb.git,最后只会在c下面创建bbb这个目录,而不是在github.com/aaa下创建这个bbb,所以想了一下干脆每次clone的时候都指定一下 git clone https://github.com/aaa/bbb.git "$GOPATH/src/github.com/aaa"。
问题: git clone在指定位置
回答: 在执行git clone命令时,可以通过指定目标位置来将克隆的仓库放置在特定的位置。例如,可以使用以下命令将仓库克隆到指定位置:git clone https://github.com/aaa/bbb.git "$GOPATH/src/github.com/aaa"。这样,克隆的仓库将被放置在"$GOPATH/src/github.com/aaa"目录下。\[1\]
#### 引用[.reference_title]
- *1* [git clone到指定目录](https://blog.csdn.net/weixin_40242845/article/details/120621913)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item]
- *2* [git篇---git clone 获取指定分支的指定commit版本](https://blog.csdn.net/m0_46825740/article/details/128815995)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item]
- *3* [git clone指定分支](https://blog.csdn.net/baidu_37157624/article/details/124834217)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文