GIT/SVN
雨声不在
有问题请在相关博客下评论,或者给我邮件 hello@yeshen.org。:)
展开
-
GIT/SVN常用操作备忘
这里做个备忘SVN# checkout codesvn checkout ${url}# updatesvn update# log svn log# diffsvn diff# add all# force allsvn add --force .# add newssvn st | grep \? | sed 's/? //' | xargs ...原创 2017-03-23 11:37:44 · 520 阅读 · 0 评论 -
gitlab 强制提交
类似文章之前在自己的电脑上强制提交了不少次。然后刚才发现之前部署的gitlab强制提交不了。 git push -f origin master报错Counting objects: 6, done.Delta compression using up to 8 threads.Compressing objects: 100% (6/6), done.Writing ...原创 2017-08-15 09:17:58 · 24423 阅读 · 1 评论 -
gitlab从安装到维护
类似文章备份:sudo gitlab-rake gitlab:backup:create最近重新开了项目,有很多闲置的机器,我抓了一台,重装了ubuntu,再装了Gitlab,操作挺简单的:Install Refer to https://about.gitlab.com/installation/#ubuntu https://mirror.tuna....原创 2017-07-10 16:41:09 · 5200 阅读 · 1 评论 -
gitlab的维护
类似文章 From: https://segmentfault.com/a/1190000002439923备份sudo gitlab-rake gitlab:backup:create查看备份cd /var/opt/gitlab/backups && l# 1520398011_2018_03_07_10.3.2_gitlab_backup.tar...转载 2018-03-07 13:16:37 · 266 阅读 · 0 评论 -
svn忽略文件/文件夹
类似文章 from:how-do-i-ignore-files-in-subversionUse the following command to create a list not under version control files.svn status | grep "^\?" | awk "{print \$2}" > ignoring.txtThen edi...转载 2018-03-21 20:17:36 · 315 阅读 · 0 评论