
git
修炼到救赎
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
git使用
翻译 2019-03-22 00:37:43 · 112 阅读 · 0 评论 -
git和github
git常用命令 git con git config //两次tab补全 git config --help或者 git help config //查看git 配置帮助 git config global user.name “your name”p配置用户 git config global user.email “[email protected]”//配置用户邮箱 git c...翻译 2019-03-22 10:57:24 · 213 阅读 · 0 评论 -
史上最详细git教程
git创建仓库后,如何连接上远程的仓库 git init git config --global user.name git config --global user.email git config --global core.editor git config --list ssh-keygen -t rsa -b 4096 -C "email" echo "hello" > ...转载 2019-04-07 16:27:00 · 140 阅读 · 0 评论 -
eclipse中使用git
来源:https://blog.csdn.net/hhhccckkk/article/details/10458159 有的eclipse已经自带了GIt了,就不用安装了。如果,想重新安装,可以先卸载GIT,卸载 不同eclipse卸载不一样: 1.在Eclipse中依次点击菜单"Help"->"About Eclipse"。弹出图1所示对话框,点击"Installation Deta...转载 2019-04-08 21:54:26 · 729 阅读 · 0 评论 -
使用Git工作的一般流程
来源:https://blog.csdn.net/eeeeasy/article/details/80783866 目录 使用Git工作的一般流程 获得一个Git管理的工作区 自己初始化一个仓库 从远程仓库获得工作目录 添加,修改,推送 分支 拉取别人的提交 处理冲突 获得一个Git管理的工作区 使用Git开始工作,首先需要一个Git管理的工作区,这个工作去可以是...转载 2019-04-08 21:56:16 · 138 阅读 · 0 评论 -
eclipse中git提交时there are no staged files
来源:https://jingyan.baidu.com/article/9faa7231fb828f473c28cb83.html 在eclipse中经常使用与集成各种可以进行对代码上管理的,这个在使用eclipse中进行提交代码过程,就会存在各种上错误信息,导致代码无法提交到代码库当中,例如there are no staged files的错误的信息。 工具/原料 eclipse ...转载 2019-06-29 18:29:18 · 451 阅读 · 0 评论