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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
9115a4f9
Commit
9115a4f9
authored
Jan 17, 2013
by
GitLab
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove satellites when moving namespace
parent
b53ca0bc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
app/models/namespace.rb
app/models/namespace.rb
+9
-2
No files found.
app/models/namespace.rb
View file @
9115a4f9
...
...
@@ -71,8 +71,15 @@ class Namespace < ActiveRecord::Base
if
File
.
exists?
(
new_path
)
raise
"Already exists"
end
begin
begin
# Remove satellite when moving repo
if
path_was
.
present?
satellites_path
=
File
.
join
(
Gitlab
.
config
.
satellites
.
path
,
path_was
)
FileUtils
.
rm_r
(
satellites_path
,
force:
true
)
end
FileUtils
.
mv
(
old_path
,
new_path
)
send_update_instructions
@require_update_gitolite
=
true
...
...
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