
GIT
文章平均质量分 51
ancy
河北工业大学,软件工程专业
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
git常用命令
1. git remote -v #查看当前remote 2. git remote add origin git@github.com:MichaelRoshen/xx.git #创建名称为origin 的remote 3. git commit -m "message" #提交修改 4. git commit -a -m "message" #提交本地所有修改 5. git che原创 2015-02-26 11:30:52 · 427 阅读 · 0 评论 -
error: The following untracked working tree files would be overwritten by merge:
[andy@localhost weixin_robot]$ git pull Updating d652d1c..fa05549 error: The following untracked working tree files would be overwritten by merge: .idea/encodings.xml .idea/misc.xml .原创 2015-02-28 10:05:46 · 4260 阅读 · 0 评论 -
Git分支管理策略
Git分支管理策略 作者: 阮一峰 日期: 2012年7月 5日 如果你严肃对待编程,就必定会使用"版本管理系统"(Version Control System)。 眼下最流行的"版本管理系统",非Git莫属。 相比同类软件,Git有很多优点。其中很显著的一点,就是版本的分支(branch)和合并(merge)十分方便。有些传统的版本管理软件,分支操作实际上会生成一份转载 2015-03-30 19:48:36 · 466 阅读 · 0 评论 -
git 学习
[github 上添加 SSH key] (1)创建一个 SSH key $ ssh-keygen -t rsa -C "your_email@example.com" 代码参数含义: -t 指定密钥类型,默认是 rsa ,可以省略。 -C 设置注释文字,比如邮箱。 -f 指定密钥文件存储文件名。原创 2015-03-31 16:41:20 · 540 阅读 · 0 评论