Git,Gitlab
请大声叫我帅哥
心静,方能成大事..
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Git的一些长用命令
git clone 路径 git clone -b develop 路径 克隆develop分支 使用git status命令查看我们做过哪些修改,建议在提交前都调用一下这个命令,看看我们做过什么改动 git checkout -b develop 切换到develop分支 如果没有develop就创建一个新的 git branch-------------------查原创 2015-04-10 14:32:25 · 945 阅读 · 0 评论 -
SmartGit 授权文件 Free Trial License to Non-Commercial
Windows: %APPDATA%/syntevo/SmartGit/ OS X: ~/Library/Preferences/SmartGit/ Unix/Linux: ~/.smartgit/ and remove the file settings.xml 例如windows: 开始 运行 %APPDATA%/syntevo/SmartGit原创 2016-01-19 15:01:03 · 16077 阅读 · 2 评论 -
git常用命令
GIT常规配置 $ git config -global user.name name> #设置提交者名字 $ git config -global user.email email> #设置提交者邮箱 $ git config -global core.editor editor> #设置默认文本编辑器 $ git config -global merge.tool tool> #设置原创 2016-06-08 10:48:48 · 417 阅读 · 0 评论 -
gitlib项目迁移到新Gitlab Server
上次的gitlab服务是用http的,这次我给gitlab加上了https支持,因为是自签名的证书,所以需要大家设置git的全局参数http.sslverify为false, 下面是设置此配置的command: $ git config --global http.sslverify false 原来检出的项目需要修改它的remote才能提交到此repo上。下面以ssl-vpn原创 2016-06-08 09:25:49 · 2779 阅读 · 0 评论
分享