💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、豆包、星火、月之暗面及文生图、文生视频 广告
# 分支 ## 本地分支 ``` git branch 分支列表 git branch -b new_branch 创建新的分支 git branch -d new_branch 删除分支 git branch -D new_branch 强制删除分支 git checkout master 切换分支 ``` ## 远程分支 ``` git branch git push github xiaoteng //推送 其实完整 git push github xiaoteng:xiaoteng123 ,冒号左是本地分支,右是远程分支 git push github :xiaoteng //删除分支 ```