GitHub使用
GitHub使用
新库提交
初始化本地git->选提交内容->commit备注->关联github参考->推送并合并
cd 本地项目
#初始化git
git init
#选择要提交的内容,.或者*表示将所有文件添加到仓库
git add .
#提交并备注版本描述
git commit -m "v20220608"
#关联github仓库
git remote add origin git://github.com/xxx/xxx.git
#首次提交前将本地origin和github的main进行合并
git pull --rebase origin main
#再次提交既可
git push -u origin main
本文来自博客园,作者:烽火三月,转载请注明原文链接:https://www.cnblogs.com/syfl/p/16355080.html