常用的命令
提交代码
1.查看当前分支:git branch
2.查看哪些文件未提交:git status
3.添加当前更改到暂存区里面去:git add changefile
4.把暂存区的所有内容提交到当前分支上:git commit -m "提交消息"
5.提交到远程分支:git push origin tencent(远程分支的名字)
6.从远程分支拉取代码:git pull origin tencent
合并分支tencent到master
1.切换到master分支:git checkout master
2.合并到master:git merge tencent(git merge命令用于合并指定分支到当前分支上;可能会出现冲突,先解决冲突,然后再提交)
3.删除分支:git branch –d name
创建+切换分支:git checkout –b name
1.查看当前仓库地址
git remote show origin
2.设置指定仓库地址
git remote set-url origin http://10.15.0.248:8888/open/openplatform.git
初始化远程仓库
git init
1 git remote rm origin // 移除本地关联
2 git remote add origin git@github.com/example.git // 添加线上仓库
3 git push -u origin master // 推送代码到远程仓库,注意:更改后,第一次上传需要指定 origin
强制覆盖
git push -f -u origin master
git remote -v
git statsh
1.缓存 git stash会把所有未提交的修改(包括暂存的和非暂存的)都保存起来,用于后续恢复当前工作目录。
通过git stash 命令推送一个新的储藏,当前的工作目录就干净了。stash是本地的,不会通过git push命令上传到git server上。
实际应用中推荐给每个stash加一个message,用于记录版本,使用git stash save 取代git stash命令。
git stash save "vue.config.js"
参考文章:https://blog.csdn.net/xihuanzhi1854/article/details/88641984
参考教程
https://blog.csdn.net/u011535541/article/details/83379151
https://blog.csdn.net/u010059669/article/details/82670484