git的一些常用指令
Posted 有关于S27的故事
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git的一些常用指令相关的知识,希望对你有一定的参考价值。
本地没有仓库的情况下
git clone -b master git@github.com:LjtGentle/NewPocker.git 指定克隆master分支
初次提交的命令
git init
git add README.md
git commit -m “first commit”
git remote add origin git@github.com:xxxx.git
git push -u origin master
git commit -am “…” 加到本地并且注释
查看分支 git branch -a
切换分支 git checkout dev
新建并切换分支 git checkout -b NewBranch
上传/推送到远程github git push origin master
不小心将git远程地址配错了,再次配置提示以下错误:
fatal: 远程 origin 已经存在。
此时只需要将远程配置删除,重新添加即可;
删除 git remote rm origin
gitlab 和github一起使用的方法
https://www.cnblogs.com/bdhk/p/7423329.html
以上是关于git的一些常用指令的主要内容,如果未能解决你的问题,请参考以下文章