git 本地新建并提交上传仓库

git 本地新建并提交上传仓库_第1张图片

初始化步骤基本解释

新建readme

touch README.md

初始化仓库

git init

添加仓库下所有文件

git add . 

提交 备注到本地

git commit -m "备注"

链接远程git库

git remote add origin 新建库ssh链接

上传代码

git push -u origin master

初始化操作步骤

git 本地新建并提交上传仓库_第2张图片

git 本地新建并提交上传仓库_第3张图片

touch README.md

git init

git add .

git commit -m "备注"

git remote add origin 新建库ssh链接

git push -u origin master

上传代码步骤

git commit只是上传本地,保存一下

git push才是上传远端

git add .

git commit -m "备注"

git push -u origin master

 

你可能感兴趣的:(基本软件使用,git,github)