
IDEA
Timor__
只想在平庸的生活中拥抱你
展开
-
IDEA 修改远程仓库地址
只有简单的几个步骤: 1、删除现有的远程仓库地址 (备注仓库名称一般默认是origin,可根据实际情况修改) git remote rm origin 2、重新添加远程仓库地址(仓库名称默认origin,可根据实际情况修改) git remote add origin 远程仓库地址 3、查看远程仓库地址 git remote -v 如果帮助到了你,可以点一个赞吗?谢谢各位了 ...原创 2020-04-29 17:51:15 · 1576 阅读 · 1 评论 -
IDEA 上传项目至Github或者GitLab
上传项目步骤: 1、git init 初始化 2、 git add . 初步提交 3、git commit -m 备注信息 5、git remote add origin 远程仓库地址 建立远程仓库的连接 6、git push -u origin master 推送到远程仓库 ...原创 2020-04-29 17:44:19 · 318 阅读 · 0 评论 -
IntelliJ IDEA使用教程
IntelliJ IDEA使用教程 (总目录篇) 原创链接:https://blog.youkuaiyun.com/qq_27093465/article/details/77449117 ...转载 2020-05-28 09:45:34 · 216 阅读 · 0 评论