Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axilleas@axilleas.me>2017-09-05 19:44:24 +0300
committerAchilleas Pipinellis <axilleas@axilleas.me>2017-09-05 19:44:24 +0300
commit7b4ad140baaa0b5a5a2f13fb557aef7b5530dc52 (patch)
tree76ea71c5083b8bff9473a930de2703493a7af42c /Rakefile
parentf9bc52e90c0689626ee0fdfda15abcbd8807e73c (diff)
Fix git fetch
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 9465f52b..7b9fd9ab 100644
--- a/Rakefile
+++ b/Rakefile
@@ -77,7 +77,7 @@ task :pull_repos do
# Update repository from master. Fetch and reset to avoid
# merge conflicts
`git fetch origin #{branch}`
- `git reset --hard origin/#{branch}`
+ `git reset --hard #{branch}`
end
else
puts "This shouldn't happen"