Gitee 码云上传流程&Git的一些常用方法
1.首先本地 git bash here
2.git init 初始化 本地添加 .git文件夹
3.git remote add origin + '项目地址' 远程添加项目
4.git pull origin master 拉下远程仓库文件
5.git add . 将新文件推送
5.5 git status 查看状态 绿色为成功
6. git commit -m "信息" 添加上传信息
7.git push origin master 推送到线上仓库 gitee/github
踩坑:
git push 提示错误
原因是 README.md 文件不在本地仓库 或者修改了 没有同步
使用 git pull --rebase origin master 同步文件
然后就可以正常的 git push 了
PS1: 想要修改 git commit -m 提交的信息
先输入指令 git reset --soft HEAD~1 撤销上一次git commit 然后重新 commit 提交就可以了
----Git 的其他操作 分支/合并
git的基本原理图
--创建分支
git branch XXX XXX 为分支名 还是留在当前分支
git checkout -b XXX 创建新分支并切换到新分支下
--查看分支
git branch 查看本地分支
git branch -r 查看远程分支
--切换分支
git checkout XXX
--合并指定分支到当前分支
git merge XXX
--删除分支
git branch -d XXX
--删除远程分支
git push origin --delete XXX
git branch -dr XXX
----日常使用操作
git branch 先确认自己当前分支
如果不在新分支
git checkout -b XXX 切一个新分支
git add . git commit -m "" 添加到本地仓库 ==> 之后拉取一下 看看有没有冲突
git push -u origin XXX 创建一个远程分支 并上传
git checkout master 切换到本地仓库主分支
git merge XXX 合并XXX分支 此时 本地仓库 主分支更新了 但是远程仓库主分支还是旧的
git push 在推送至远程 就完成了~