git.berlin/README.md

40 lines
721 B
Markdown
Raw Normal View History

2016-04-02 15:33:36 +02:00
# git.kremalicous
2016-04-24 20:28:12 +02:00
URL: https://www.git.berlin | SSH Host: git.berlin
## Config
- [Appearance](appearance.md)
- [Directories](directories.md)
- do monitor config template changes: https://gitlab.com/gitlab-org/omnibus-gitlab/commits/master/files/gitlab-config-template/gitlab.rb.template
2016-04-02 15:33:36 +02:00
## Documentation
http://doc.gitlab.com/omnibus/
2016-04-02 15:33:36 +02:00
## Handy commands
```bash
# connect
ssh m@git.berlin
2016-04-02 15:33:36 +02:00
cd /etc/gitlab/
cd /var/opt/gitlab/
2016-04-02 15:33:36 +02:00
# reconfigure all the things
sudo gitlab-ctl reconfigure
# restart all the things
sudo gitlab-ctl restart
2016-04-02 15:33:36 +02:00
# run checks
sudo gitlab-rake gitlab:check
2016-04-02 15:33:36 +02:00
# clean all the things
sudo gitlab-rake assets:clean assets:precompile cache:clear
2016-04-02 15:33:36 +02:00
# backup
sudo gitlab-rake gitlab:backup:create
2016-04-02 15:33:36 +02:00
```