Files
obsidian-vault/06 平台与配置/git的安装和初步使用.md
2026-06-23 00:24:32 +08:00

19 lines
549 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#软件配置
git在windows下1行命令安装的方法
`winget install Git.Git`
通过2行代码为Git设置代理
避免git clone时下载慢的问题
```bash
git config --global http.proxy http://127.0.0.1:7890
git config --global https.proxy http://127.0.0.1:7890
```
通过git命令复制freqtrade策略库的命令
`git clone https://github.com/freqtrade/freqtrade-strategies.git`
上述几个命令为新设备安装git使用git clone freqtrade的策略库等基本操作。
目前掌握这几个就可以,后续可持续学习。