Merge pull request #3862 from crazyscience/patch-3

Setting the working directory before git operations
This commit is contained in:
Dmitriy Zaporozhets 2013-05-07 23:18:39 -07:00
commit a87f5c60a4
3 changed files with 7 additions and 0 deletions

View File

@ -16,6 +16,8 @@
### 2. Update GitLab
```bash
# Set the working directory
cd /home/gitlab/gitlab/
# Get latest code
sudo -u gitlab -H git fetch

View File

@ -7,6 +7,10 @@
### 2. Update code & db
```bash
#Set the working directory
cd /home/gitlab/gitlab/
# Get latest code
sudo -u gitlab git fetch

View File

@ -19,6 +19,7 @@ sudo chsh -s /bin/bash git
__2. git clone gitlab-shell__
```
cd /home/git/
sudo -u git -H git clone https://github.com/gitlabhq/gitlab-shell.git /home/git/gitlab-shell
```