💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## 一、创建github仓库 在github,创建仓库: ![](https://img.kancloud.cn/4a/da/4adafc9b90f41373493b9336b1ec874f_1133x647.png) 创建完成: ![](https://img.kancloud.cn/7c/09/7c0946433fd7ab36c7d1c405e3c20fa3_1358x634.png) ## 二、初始工作 进入你本地为该工程规划的目录(空); ![](https://img.kancloud.cn/3e/ae/3eaecc5c79c993ddcc99f5b837fa5e53_677x457.png) 创建一个README.md文件; ``` echo "# rayfrontmobile" >> README.md ``` 初始化工程目录; ``` git init ``` 将刚创建的文件,纳入git,并提交; ``` git add README.md git commit -m "first commit" ``` 推倒远程仓库: ``` git branch -M main git remote add origin git@github.com:4170804/rayfrontmobile.git git push -u origin main ``` 完成所有的工作了,可以开始使用该仓库了: ![](https://img.kancloud.cn/ee/0f/ee0f8e62c3b3b30b3bff14acb4a86cb2_677x565.png)