ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# 常用命令 ~~~ git add . //ga git status //gs git diff //gd git commit -m "desc" //gcm git push //gp git checkout -b feature_1 //gcb git pull origin master //gpom ~~~ ## 偶尔用到 ~~~ git push --set-upstream origin dev_2 git stash git log git cherry-pick xxx git init git clone ~~~ ### 很少用到 ~~~ git config --global user.name "muName" git config --global user.email "myEmail" ~~~