
git
三十_A
前端程序员
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
git操作中遇到please enter a commit message to explain why this merge is necessary
问题解决办法参考:https://www.cnblogs.com/wei325/p/5278922.html遇到的完整问题如下:please enter a commit message to explain why this merge is necessary,especially if it merges an updated upstream into a topic bran...转载 2018-09-03 19:19:22 · 5723 阅读 · 1 评论 -
git操作
1. 在自己github头像点击一下,然后点击new repository,然后输入仓库名和描述、选中Initialize this repository with a README(创建readme),点击create repository创建完成。2. 进到本地要放项目的文件夹中,右键进入git bash here。3. git clone 项目地址(我用的是ssh),回车4. 第...原创 2018-09-12 20:18:01 · 230 阅读 · 0 评论 -
git 笔记
配置名字和email: 1. git config --global user.name 'Your Name' 2. git config --global user.email 'email@example.com' 补充: git config 和 --global参数 表示这台机器上的所有git仓库都会使用这个配置创建版本库: 1. 创建一个空目录: ...原创 2018-11-23 15:12:21 · 489 阅读 · 0 评论