Git
Laisxx
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
git的基本用法_随记
一、现有的Git 项目,要为其贡献代码,怎么关联。 1、用git clone 方式 git clone 2、下载压缩包方式 download一个.zip项目压缩包 解压成一个文件夹 git bash 中 cd 到文件根目录下 git init //初始化文件夹,使之成为一个本地仓库 git remote add origin https://github.c原创 2015-10-04 18:17:59 · 605 阅读 · 0 评论 -
error: failed to push some refs to 'https://github.com/.....'
执行: git push 出现: ! [rejected] master -> master (non-fast-forward) error: failed to push some refs to 'https://github.com/.....' hint: Updates were rejected because the tip of your curren原创 2015-10-02 22:09:54 · 1600 阅读 · 0 评论 -
git解惑
http://www.fwqtg.net/git%E8%A7%A3%E6%83%91.html 一、Git是什么? 很多初次接触Git的人总是把Git与Github等同起来,我刚开始也是如此。其实Git是一个分布式软件控制/配置管理软件;而Github是一个可以托管Git版本库的网站而已。越来越多的开源项目选择使用Git进行管理,然后托管在Github网站上。 Git与svn、c转载 2015-10-01 01:23:31 · 494 阅读 · 0 评论 -
Git右键菜单去除办法
首先,我表示git默认的右键菜单很烦,太多项了,而我们平时用的最多的无非是一个Git Bash! 删除msGit右键菜单 如果是windows 64位系统 cmd进入"C:\Program Files (x86)\Git\git-cheetah"目录,运行 regsvr32 /u git_shell_ext64.dll 复制代码 如果是windows 64位系统转载 2015-08-02 04:00:10 · 5158 阅读 · 2 评论 -
git远程、本地分支的同步
感谢知乎@吕义旺,的详细讲解 本文出自:http://www.zhihu.com/question/21995370 疑问:远程有两个分支,如何在本地同步、开发? 一、远程仓库有master和dev分支 1. 克隆代码 git clone https://github.com/master-dev.git # 这个git路径是无效的,示例而已 2. 查看所转载 2015-07-29 13:34:25 · 21578 阅读 · 0 评论 -
error: Your local changes to the following files would be overwritten by merge:
http://blog.youkuaiyun.com/zwhfyy/article/details/8625228 Your local changes to the following files would be overwritten by merge error: Your local changes to the following files would be overwritten by转载 2015-12-20 23:44:01 · 4791 阅读 · 0 评论 -
git 更改-单个项目-提交时显示的名字
git 更改-单个项目-提交时显示的名字-跟登录账号名那些没有关系 [user] name = pandaXiang原创 2017-05-03 15:29:02 · 3110 阅读 · 1 评论
分享