💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
1. cd 进入项目目录 2. git init //初始化 3. git add . //把本地的修改加到stage中 4. git remote add 别名 xxxx@xxx.com //关联gitlab仓库(仅首次需要) 5. git commit -m '修改的信息注释' //把stage中的修改提交到本地库 6. git pull 别名 分支 //把远程库的代码更新到工作台 7. git checkout -b dev //新建dev分支 8. git push 别名 分支 //把本地库的修改提交到远程库中 9. git branch // 检查当前分支 10. git checkout 分支名字 // 切换分支 11. git fetch 别名 分支 //把远程分支拉到本地 12. git checkout -b dev(本地分支名称) origin/dev(远程分支名称) //在本地创建分支dev并切换到该分支