Git克隆到特定文件夹?

Joe*_*bby 10 git github sublimetext

尝试学习如何克隆Sublime Text 2的这个Soda主题:

git clone https://github.com/buymeasoda/soda-theme/ "Theme - Soda"
Run Code Online (Sandbox Code Playgroud)

正如它在这里所说:https://github.com/buymeasoda/soda-theme

但我不确定我在哪里输入,或者如何将其直接下载到我的包文件夹中.我该怎么做呢?

man*_*lds 17

确保你有git并git clone https://github.com/buymeasoda/soda-theme/ <where you want to clone to>在你的操作系统的终端/控制台中输入该命令.这<where you want to clone to>是您要检出文件的路径.

  • @JoeBobby - 如果路径中有空格,请将其括在引号中 - "path/where/you/want/to/clone"` (2认同)