拓展阅读
将项目分享到 GitHub
- 初始化 Git
git init
- 添加文件
git add .
- 提交文件
git commit -m "提交描述"
-
在 GitHub 上创建仓库
-
将本地仓库添加到远程仓库
git remote add origin https://github.com/houbb/mybatisNet.git
- 推送
git push -u origin master
常见错误
1、fatal: remote origin already exists.
$ git remote rm origin
然后重新添加:
$ git remote add origin https://github.com/houbb/mybatisNet.git
$ git push -u origin master -f
这会导致强制覆盖,可能会导致数据丢失。
git 初始化 & 导入到 Github
1、如果你使用的是 IntelliJ IDEA,你可以使用这种方式:
VCS -> 导入版本控制 -> 在 Github 上共享项目
2、通用方法
- 在命令行上创建一个新的仓库
echo "# git-demo" >> README.md
git init
git add README.md
git commit -m "首次提交"
git remote add origin https://github.com/houbb/git-demo.git
git push -u origin master
- 将现有仓库推送到 Github(通过命令行)
git remote add origin https://github.com/houbb/git-demo.git
git push -u origin master
请注意,以上命令中的 master
分支可能在较新版本的 Git 中被 main
分支替代,这取决于你的 Git 配置和 Git 服务提供商(如 Github)的默认设置。
如果提示分支不存在,你可能需要改用 main
分支或者检查你的远程仓库使用的默认分支名。
Share to Github 分享到 github
或者,在命令行上创建一个新的仓库:
echo "# quartz-book" >> README.md
git init
git add README.md
git commit -m "首次提交"
git remote add origin https://github.com/houbb/quartz-book.git
git push -u origin master
或者,将现有仓库推送到 Github(通过命令行):
git remote add origin https://github.com/houbb/quartz-book.git
git push -u origin master
同样需要注意的是,如果你的仓库使用 main
分支作为默认分支(这在较新版本的 Git 仓库中更为常见),你需要将上述命令中的 master
替换为 main
。
否则,你可能会遇到找不到分支的错误。如果仓库中已经存在 master
分支,则可以继续使用 master
。
在推送之前,请确保你已经设置了正确的远程仓库地址,并且你有权限向该仓库推送代码。如果仓库是私有的,你还需要确保你有访问该仓库的权限。
另外,如果你正在推送一个已经存在的本地仓库,那么在你执行 git push
命令之前,你应该已经在本地执行了 git add
和 git commit
命令来暂存并提交你的更改。
上述第二个命令块假设你已经完成了这些步骤,并且只是将本地仓库与远程仓库关联起来并推送更改。
参考资料
本文由博客一文多发平台 OpenWrite 发布!
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦