Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Tatuya Kamada
gitlab-ce
Commits
8bce9d7f
Commit
8bce9d7f
authored
Aug 13, 2014
by
Jeroen van Baarsen
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #7475 from bbodenmiller/curl-redirects
follow curl redirects
parents
71f87ffb
aabb4093
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
9 additions
and
9 deletions
+9
-9
doc/install/installation.md
doc/install/installation.md
+2
-2
doc/update/4.0-to-4.1.md
doc/update/4.0-to-4.1.md
+1
-1
doc/update/4.2-to-5.0.md
doc/update/4.2-to-5.0.md
+1
-1
doc/update/5.0-to-5.1.md
doc/update/5.0-to-5.1.md
+1
-1
doc/update/5.2-to-5.3.md
doc/update/5.2-to-5.3.md
+1
-1
doc/update/5.3-to-5.4.md
doc/update/5.3-to-5.4.md
+1
-1
doc/update/6.9-to-7.0.md
doc/update/6.9-to-7.0.md
+1
-1
doc/update/7.0-to-7.1.md
doc/update/7.0-to-7.1.md
+1
-1
No files found.
doc/install/installation.md
View file @
8bce9d7f
...
...
@@ -69,7 +69,7 @@ Is the system packaged Git too old? Remove it and compile from source.
# Download and compile from source
cd /tmp
curl --progress https://www.kernel.org/pub/software/scm/git/git-2.0.0.tar.gz | tar xz
curl -
L -
-progress https://www.kernel.org/pub/software/scm/git/git-2.0.0.tar.gz | tar xz
cd git-2.0.0/
make prefix=/usr/local all
...
...
@@ -95,7 +95,7 @@ Remove the old Ruby 1.8 if present
Download Ruby and compile it:
mkdir /tmp/ruby && cd /tmp/ruby
curl --progress ftp://ftp.ruby-lang.org/pub/ruby/2.1/ruby-2.1.2.tar.gz | tar xz
curl -
L -
-progress ftp://ftp.ruby-lang.org/pub/ruby/2.1/ruby-2.1.2.tar.gz | tar xz
cd ruby-2.1.2
./configure --disable-install-rdoc
make
...
...
doc/update/4.0-to-4.1.md
View file @
8bce9d7f
...
...
@@ -36,7 +36,7 @@ sudo -u gitlab -H bundle exec rake db:migrate RAILS_ENV=production
sudo mv /etc/init.d/gitlab /etc/init.d/gitlab.old
# get new one using sidekiq
sudo curl --output /etc/init.d/gitlab https://raw.github.com/gitlabhq/gitlab-recipes/4-1-stable/init.d/gitlab
sudo curl -
L -
-output /etc/init.d/gitlab https://raw.github.com/gitlabhq/gitlab-recipes/4-1-stable/init.d/gitlab
sudo chmod +x /etc/init.d/gitlab
```
...
...
doc/update/4.2-to-5.0.md
View file @
8bce9d7f
...
...
@@ -116,7 +116,7 @@ sudo chmod -R u+rwX /home/git/gitlab/tmp/pids
```
bash
# init.d
sudo rm
/etc/init.d/gitlab
sudo
curl
--output
/etc/init.d/gitlab https://raw.github.com/gitlabhq/gitlab-recipes/5-0-stable/init.d/gitlab
sudo
curl
-
L
-
-output
/etc/init.d/gitlab https://raw.github.com/gitlabhq/gitlab-recipes/5-0-stable/init.d/gitlab
sudo chmod
+x /etc/init.d/gitlab
# unicorn
...
...
doc/update/5.0-to-5.1.md
View file @
8bce9d7f
...
...
@@ -52,7 +52,7 @@ sudo -u git -H bundle exec rake assets:precompile RAILS_ENV=production
```
bash
# init.d
sudo rm
/etc/init.d/gitlab
sudo
curl
--output
/etc/init.d/gitlab https://raw.github.com/gitlabhq/gitlab-recipes/5-1-stable/init.d/gitlab
sudo
curl
-
L
-
-output
/etc/init.d/gitlab https://raw.github.com/gitlabhq/gitlab-recipes/5-1-stable/init.d/gitlab
sudo chmod
+x /etc/init.d/gitlab
```
...
...
doc/update/5.2-to-5.3.md
View file @
8bce9d7f
...
...
@@ -50,7 +50,7 @@ sudo -u git -H bundle exec rake assets:precompile RAILS_ENV=production
```
bash
sudo rm
/etc/init.d/gitlab
sudo
curl
--output
/etc/init.d/gitlab https://raw.github.com/gitlabhq/gitlabhq/5-3-stable/lib/support/init.d/gitlab
sudo
curl
-
L
-
-output
/etc/init.d/gitlab https://raw.github.com/gitlabhq/gitlabhq/5-3-stable/lib/support/init.d/gitlab
sudo chmod
+x /etc/init.d/gitlab
```
...
...
doc/update/5.3-to-5.4.md
View file @
8bce9d7f
...
...
@@ -54,7 +54,7 @@ sudo -u git -H bundle exec rake assets:precompile RAILS_ENV=production
```
bash
sudo rm
/etc/init.d/gitlab
sudo
curl
--output
/etc/init.d/gitlab https://raw.github.com/gitlabhq/gitlabhq/5-4-stable/lib/support/init.d/gitlab
sudo
curl
-
L
-
-output
/etc/init.d/gitlab https://raw.github.com/gitlabhq/gitlabhq/5-4-stable/lib/support/init.d/gitlab
sudo chmod
+x /etc/init.d/gitlab
```
...
...
doc/update/6.9-to-7.0.md
View file @
8bce9d7f
...
...
@@ -32,7 +32,7 @@ Download and compile Ruby:
```
bash
mkdir
/tmp/ruby
&&
cd
/tmp/ruby
curl
--progress
ftp://ftp.ruby-lang.org/pub/ruby/2.1/ruby-2.1.2.tar.gz |
tar
xz
curl
-
L
-
-progress
ftp://ftp.ruby-lang.org/pub/ruby/2.1/ruby-2.1.2.tar.gz |
tar
xz
cd
ruby-2.1.2
./configure
--disable-install-rdoc
make
...
...
doc/update/7.0-to-7.1.md
View file @
8bce9d7f
...
...
@@ -32,7 +32,7 @@ Download and compile Ruby:
```
bash
mkdir
/tmp/ruby
&&
cd
/tmp/ruby
curl
--progress
ftp://ftp.ruby-lang.org/pub/ruby/2.1/ruby-2.1.2.tar.gz |
tar
xz
curl
-
L
-
-progress
ftp://ftp.ruby-lang.org/pub/ruby/2.1/ruby-2.1.2.tar.gz |
tar
xz
cd
ruby-2.1.2
./configure
--disable-install-rdoc
make
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment