
gitee
LUCKY - W · J
不忘初心,方得始终。
展开
-
一:本地项目托管到gitee - 第一次提交
开发工具:Android studio 3.2.1 for Mac,终端工具:iTerm2二:本地项目托管到gitee - 分支管理(终端)https://blog.youkuaiyun.com/qq_33152517/article/details/90713131命令行小结初始化git:git config --global user.name "你的名字或昵称" ...原创 2019-05-30 17:22:56 · 1575 阅读 · 2 评论 -
gitee错误: remote gite already exists.
查看本地是否已关联了gitee远程仓库,执行命令git remote -v , 存在远程仓库,执行命令git remote rm gitee ,git remote add gitee <你的项目地址> //注:项目地址形式为:https://gitee.com/xxx/xxx.git或者 git@gitee.com:xxx/xxx.git,...原创 2019-05-30 16:49:37 · 2165 阅读 · 0 评论 -
Could not read from remote repository.
错误Could not read from remote repository.Please make sure you have the correct access rightsand the repository exists,解决方案:1、执行命令open ~/.ssh,查看是否包含id_rsa.pub文件。2、存在id_rsa.pub文件跳到第三步,不存在id_rsa.pub...原创 2019-05-30 17:12:03 · 9021 阅读 · 0 评论 -
二:本地项目托管到gitee - 分支管理(终端)
开发工具:Android studio 3.2.1 for Mac,终端工具:iTerm2一:本地项目托管到gitee - 第一次提交https://blog.youkuaiyun.com/qq_33152517/article/details/90694012命令行小结查看分支:git branch创建并切换分支:git checkout -b shur提交:git add .,...原创 2019-05-31 14:46:55 · 1090 阅读 · 0 评论