github 推送代码

时间:2021-10-04 13:29:45

一.所有更新一起推送

.git init //初始化本地仓库

. git add .  //添加全部文件

3. git commit -m "init commit"   //提交修改创建时间点

.git status //查看是否还有未提交的

.git remote add origin 你的仓库地址  //江远程仓库关联到origin名称上 

.git push origin master //将添加的内容推送到远程仓库
7. 如果步骤六 不可以 可以尝试 git push -f origin master 推送
git init    #初始化本地文件
git add . #添加全部文件(git add -A)
git commit -m 'add all the file' #提交修改
git status #查看是否还有未提交
git remote add origin 你的仓库地址 #远程仓库关联到origin名称上
git push origin master #将add内容推送到远程仓库