美文网首页
git常用指令

git常用指令

作者: VervertomJC | 来源:发表于2022-03-11 10:22 被阅读0次

从命令行创建一个新的仓库
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin http://localhost:3000/tom/dy_iOS.git
git push -u origin master

从命令行推送已经创建的仓库
git remote add origin http://localhost:3000/tom/dy_iOS.git
git push -u origin master
//git 取消提交
git reset —hard <#commitId hash#>

本地与远程关联 强制
git pull <repo-name 远程地址> <branch> --allow-unrelated-histories
后面加上 --allow-unrelated-histories , 把两段不相干的 分支进行强行合并
后面再push就可以了

git add .
git commit -m "commmit msg"

相关文章

网友评论

      本文标题:git常用指令

      本文链接:https://www.haomeiwen.com/subject/ywecdrtx.html