Git
文章平均质量分 72
左手码农
创世的第七天,他用左手轻轻地敲下:Hello,world!
展开
-
github常见操作和常见错误!
一、如果输入$ git remote add origin git@github.com:djqiang(github帐号名)/gitdemo(项目名).git 提示出错信息:fatal: remote origin already exists. 解决办法如下: 1、先输入$ git remote rm origin 2、再输入$ git r转载 2015-04-02 00:37:56 · 699 阅读 · 0 评论 -
Gitlab的使用
一、添加sshkey1、生成sshkey ssh-keygen -t rsa -C "$your_email" cat ~/.ssh/id_rsa.pub2、保存sshkey到gitlab Profile Settings –> SSH Keys –> Add SSH Keys 把上一步中的id_rsa.pub中的内容拷贝出来粘贴到输入框中,保存原创 2015-04-01 23:04:45 · 663 阅读 · 0 评论 -
GitLab 使用163邮箱发送邮件
一、配置SMTP,使GitLab通过163邮箱给用户发送邮件vim /etc/gitlab/gitlab.rb具体配置信息:gitlab_rails['gitlab_email_from'] = "xxuser@163.com"gitlab_rails['smtp_enable'] = truegitlab_rails['smtp_address'] = "smtp.163.c原创 2015-11-23 20:16:44 · 20527 阅读 · 0 评论 -
ubuntu12.04搭建gitlab
关于如何搭建GitLab,在GitLab官网上有相关介绍gitlab下载。此处对整个搭建过程,做一个详细记录:1. 安装配置依赖项如果已经安装了Postfix来发送邮件请在安装期间选择 'Internet Site' . 你也可以用Sendmail或者 configure a 使用自定义的SMTP服务器来代替Postfix. 如果希望使用 Exim, 请 把它当做SMTP来配置.原创 2015-11-21 00:58:25 · 1139 阅读 · 0 评论 -
Git版本库规范
Git版本库规范不要提交垃圾文件。包括临时文件,编译产生的二进制文件,个人设置文件,与项目无关的文件等等。使用.gitignore文件来告诉git哪些文件应该忽略掉。不要提交不能编译运行的代码到master分支。平时创建临时分支来工作,可以随时提交,当告一段落之后再合并到master分支。保证master分支的代码是可运行的,不影响其他团队成员。善用本地转载 2016-01-20 13:06:04 · 571 阅读 · 0 评论 -
Git冲突处理的一些经验
问题今天在web服务器上修改了一下代码配置项,后来进行git pull操作的时候,提示:error: Your local changes to the following files would be overwritten by merge: protected/config/main.phpPlease, commit your changes or sta原创 2015-11-29 22:45:22 · 674 阅读 · 0 评论