Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
git Mirror
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mirko Lorenz Dietrich
git Mirror
Commits
710c6db7
Commit
710c6db7
authored
6 years ago
by
Mirko Lorenz Dietrich
Browse files
Options
Downloads
Patches
Plain Diff
mirror all branches
parent
a41d4c5a
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+5
-12
5 additions, 12 deletions
README.md
git-mirror.sh
+8
-5
8 additions, 5 deletions
git-mirror.sh
with
13 additions
and
17 deletions
README.md
+
5
−
12
View file @
710c6db7
...
...
@@ -2,26 +2,19 @@
*No-thrills / uni-directional git mirroring.*
Mirrors a git repository
**A**
to a repository
**B**
.
Mirrors
all branches in
a git repository
**A**
to a repository
**B**
.
(This solution does not need a post-receive hook on
**A**
.)
### Usage
Clone the source to a location of your choice.
Clone the source
**A**
to a location of your choice.
```
sh
$
git clone git@gitlab.example.com:path/to/repo.git source_repo
$
git clone
--mirror
git@gitlab.example.com:path/to/repo.git source_repo
```
Add the target repository as a remote (make sure you can push to target!)
.
Run script manually or trigger via cronjob/systemd timer to mirror to repo
**B**
.
```
sh
$
cd
source_repo
$
git remote add target git@github.com:target/repo.git
```
Trigger script manually or via cronjob/systemd timer.
```
sh
$
./git-mirror.sh source_repo
$
./git-mirror.sh source_repo git@github.com:target/repo.git
```
This diff is collapsed.
Click to expand it.
git-mirror.sh
+
8
−
5
View file @
710c6db7
...
...
@@ -2,13 +2,16 @@
set
-e
SOURCE_REPO
=
$1
SOURCE_REPO_DIR
=
$1
TARGET_REPO
=
$2
if
[[
!
-d
${
SOURCE_REPO
}
/.git
]]
;
then
echo
Repository
${
SOURCE_REPO
}
not found!
if
[[
!
-d
${
SOURCE_REPO
_DIR
}
/objects
]]
;
then
echo
Repository
${
SOURCE_REPO
_DIR
}
not found!
exit
-1
fi
cd
${
SOURCE_REPO
}
cd
${
SOURCE_REPO_DIR
}
# get branches in origin
git fetch
--prune
origin
git push
--
mirror
--prune
target
git push
--
prune
--mirror
${
TARGET_REPO
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment