💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
Git创始化当前文件夹 ``` git init ``` 首次需要设置邮箱和用户名 ``` git config --global user.email "email@qq.com" git config --global user.name "name" ``` 提交全部修改到预备库 ``` git add . ``` 提交指定修改 到预备库 ``` git add "file.xxx" ``` 提交更新到仓库 ``` git commit ``` 查看日志 ``` git log ``` 查看一行标准的日志 ``` git log --pretty=oneline ``` 回退1个版本 ``` git reset --hard HEAD^ ``` 回退2个版本 ``` git reset --hard HEAD^^ ``` 查看所有log记录 ``` git reflog ``` 查看最近一次的修改文件: ``` git log --stat -1 ``` 回滚到指定版本号 ``` git reset --hard ... ``` 设置别名,如设置commit的别名为co ``` git config --global alias.co commit ``` 设置git log --pretty=oneline优化版的快捷别名 ``` git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset-%C(yellow)%d%Creset %s %Cgreen(%cr)%C(bold blue)<%an>%Creset' --abbrev-commit" ``` 查看用户名 :git config user.name 查看密码: git config user.password 查看邮箱:git config user.email 查看配置信息: $ git config --list 参考: [https://blog.csdn.net/LOVE\_Me\_\_/article/details/109240187](https://blog.csdn.net/LOVE_Me__/article/details/109240187)