在执行 git push 时看到如下消息:
warning: push.default is unset; its implicit value is changing in
Git 2.0 from 'matching' to 'simple'. To squelch th...
lbbniu
7年前 (2016-08-18) 1517℃
12喜欢
转自stackoverflow:
http://stackoverflow.com/questions/115983/how-do-i-add-an-empty-directory-to-a-git-repository
Another way to make a...
lbbniu
7年前 (2016-08-18) 1546℃
0喜欢
liubingbingdeiMac:lbbVideo lbbniu$ git pullUpdating 93d85f8..e260b6cerror: The following untracked working tree files would be overwritten b...
lbbniu
7年前 (2016-08-18) 2897℃
0喜欢
删除远程分支
git branch -r -d origin/branch-name
git push origin :branch-name
删除远程Tag
显示本地 tag
git tag
Remote_Systems_Operation
删除本地tag
git tag -d...
lbbniu
7年前 (2016-06-12) 2042℃
47喜欢
有时候,干的活也可能有点杂,什么代码仓库管理之类的事也会做一些。很久之前,我在内部建立了一个的各种Linux kernel、KVM、QEMU、Xen、libvirt等源码仓库的mirror,一般来说还是比较好用的 不过,最近发生过两点小事情,就是分别关于Git与远程reposi...
lbbniu
7年前 (2016-06-12) 1951℃
6喜欢
很早之前,我们就提到过用Git tag来给工程打上标签,但是这个命令只是在本地仓库打标签而已,
为了能把标签同步到远程服务器,我们可以这样做:
默认情况下,git push并不会把tag标签传送到远端服务器上,只有通过显式命令才能分享标签到远端仓库。
1.push单...
lbbniu
7年前 (2016-06-12) 1802℃
0喜欢
一、SVN安装
1.安装包
$ sudo apt-get install subversion
2.添加svn管理用户及subversion组
$ sudo adduser svnuser
$ sudo addgroup subversion
$ sudo addgroup s...
lbbniu
9年前 (2014-11-09) 4848℃
42喜欢
首先,我表示git默认的右键菜单很烦,太多项了,而我们平时用的最多的无非是一个Git Bash!
删除msGit右键菜单
如果是windows 64位系统
cmd进入”C:\Program Files (x86)\Git\git-cheetah”目录,运行...
lbbniu
9年前 (2014-11-08) 2968℃
1喜欢