Git-Repo
疾风-Bevis
这个作者很懒,什么都没留下…
展开
-
Repo和Git 版本管理常用命令总结
1. 服务器版本下载:repo init -u git@192.168.1.11:i700t_60501010/platform/manifest.git -b froyo_almond -m M76XXTSNCJNLYA60501010.xmlrepo syncrepo forall -c git checkout --track origin/i700t_60501010 -b [转载 2016-08-18 20:37:02 · 3095 阅读 · 0 评论 -
Ubuntu中Git服务器搭建
git服务器搭建过程参考网上资料搭建git服务器过程记录 如下:需求硬件需求:一台Ubuntu或者debian电脑(虚拟机),能通过网络访问到。软件需求:git-core, gitosis, openssh-server, openssh-client, Apache2(Gitweb)安装配置git服务器安装git和openssh:a@server:~$ s转载 2016-11-28 10:03:04 · 408 阅读 · 0 评论 -
Changing a remote's URL
The git remote set-url command changes an existing remote repository URL.Tip: For information on the difference between HTTPS and SSH URLs, see "Which remote URL should I use?"The gi转载 2016-11-28 10:29:02 · 442 阅读 · 0 评论 -
Git忽略规则.gitignore梳理
对于经常使用Git的朋友来说,.gitignore配置一定不会陌生。废话不说多了,接下来就来说说这个.gitignore的使用。首先要强调一点,这个文件的完整文件名就是".gitignore",注意最前面有个“.”。一般来说每个Git项目中都需要一个“.gitignore”文件,这个文件的作用就是告诉Git哪些文件不需要添加到版本管理中。实际项目中,很多文件都是不需要版本管理的,比如P转载 2017-03-10 14:10:12 · 1531 阅读 · 0 评论