git基本操作总结

Posted ldy-miss

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git基本操作总结相关的知识,希望对你有一定的参考价值。

查看当前全部配置

git config -l

 

全局级配置,如果没有仓库级别的特殊配置,默认读取这个配置

git config --global user.name "name" 
git config --global user.email "email" 

仓库级配置,一般一个项目配置一次

git config user.name "name" 
git config user.email "email" 

 

关联远程完全空白项目

#git初始化 
git init 
#设置remote地址 
git remote add origin 地址  
git add .  
git commit -m "注释" 
git push

 

以上是关于git基本操作总结的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段15——git命令操作一个完整流程

markdown 一堆Git的基本片段

如何管理在每个 git 版本中添加私有代码片段?

使用 Git 来管理 Xcode 中的代码片段

markdown Git代码片段

总结一下git的基本操作