Category Archives: github

gitlab jar was blacklisted by the pattern

https://docs.gitlab.com/ee/push_rules/push_rules.html Enabling push rules Note: GitLab administrators can set push rules globally under Admin area > Push Rules that all new projects will inherit. You can later override them in a... Read More | Share it now!

Git 忽略提交 .gitignore

在使用Git的过程中,我们喜欢有的文件比如日志,临时文件,编译的中间文件等不要提交到代码仓库,这时就要设置相应的忽略规则,来忽略这些文件的提交。 规则 作用 /mtk ... Read More | Share it now!

如何导入另一个 Git库到现有的Git库并保留提交记录

https://www.cnblogs.com/huangtailang/p/4730336.html 问题描述: 我在本地有两个Git库项目(D1=PC项目 包含通用项目,D2=移动项目 也包含通用项目这两个项目在同一目录下),因为这两个项目使用的通用项目是一样的如数据库访问等 只有显示层(view)不一样而已,因为在之前没有很好的规划而导致出现现在的问题,即如果D1里更改了通用项目的文件 那么D2需要先将D1通用项目的更改先合并过来然后再处理D2项目(防止出现差异导致出现问题),反之也是一样,所以如果通用项目文件经常更新时,我就需要浪费大量的时间在合并这两个Git仓库上 所以要现在要将把这两个库项目合并到一个库里以分支的方式(D1,D2)进行管理(开发PC项目时切换到D1分支,开发移动项目时切换到D2分支) 然后通用项目分别从D1,D2分支迁移出来到新分支Common单独进行管理,然后D1和D2删除通用项目文件 现在我如何将一个库合并到另一个库呢(提交记录必须不能丢失)?经过几天的测试终于解决 需要解决的问题: ... Read More | Share it now!

Sublime Text 2/3 Markdown Preview

Sublime Text 2/3 Markdown Preview Preview and build your markdown files quickly in your web browser from sublime text 2/3. You can use builtin python-markdown parser or use the github markdown API for the conversion. NOTE: If you choose the GitHub API... Read More | Share it now!

Git常用命令备忘

Git配置 git config --global user.name "robbin" git config --global user.email "fankai@gmail.com" git config --global color.ui true git config --global alias.co checkout git config --global alias.ci commit git config --global alias.st... Read More | Share it now!

Generating SSH keys

https://help.github.com/articles/generating-ssh-keys/ SSH keys are a way to identify trusted computers, without involving passwords. The steps below will walk you through generating an SSH key and adding the public key to your GitHub account. We... Read More | Share it now!

Hexo Deployment

Deployment Hexo provides a fast and easy way for deployment. You only need one command to deploy your site to servers. $ hexo deploy Before we start, you have to modify settings in _config.yml. A valid deployment setting must come with type field. For... Read More | Share it now!

Markdown 语法说明 (简体中文版)

Markdown 语法说明 (简体中文版) / (点击查看快速入门) NOTE: This is Simplelified Chinese Edition Document of Markdown Syntax. If you are seeking for English Edition Document. Please refer to Markdown: Syntax. 声明:... Read More | Share it now!

Hexo常见问题解决方案

Hexo常见问题解决方案 介绍 Hexo是一个非常好用的静态博客生成器,但是由于很多方面的原因,导致在使用过程中经常出现错误。这些错误中,有些是因为自己的设置不当,导致程序报错;有些是因为版本更迭,导致原有的设置失效;而有些,则是Hexo程序本身的BUG。本文旨在尽可能的解决前两类问题,缓解Hexo项目大量重复issues的现象。当然,我个人的力量是有限的,因此也希望使用Hexo的大家也能一起行动起来,通过提交PR,发布issues或者在下方评论区评论等形式参与到本文档的编辑中来。同时,也希望有能力的人可以将本文档翻译成英文,以帮助到更多的人。浏览时,使用Ctrl+F搜索关键词。 本文欢迎转载,但是恳请保留贡献者信息,谢谢。   常见错误 {... Read More | Share it now!