配置全局:
git config --global user.name "xxx"
git config --global user.email "7618733+god_hring@user.noreply.gitee.com"
上传到仓库:
-
在码云或者
github
上创建仓库 -
仓库初始化(在本地)
git init
-
新建
readme.md
文件:
touch README.md
-
添加到本地缓冲区(.代表全部)
git add .
-
此时,也可以查看缓冲区状态
git status
-
添加注释
git commit -m'注释信息'
一般,注释会使用
+ - *
等符号作为前缀,代表增加,删除,改动 -
添加远程仓库地址
git remote add 自定义缓存名(origin) 码云地址
-
检查远程仓库状态
git remote -v
-
提交代码到远程仓库
git push origin master
克隆到本地:
git clone 地址