Skip to content

Instantly share code, notes, and snippets.

View julioarguello's full-sized avatar

Julio Argüello julioarguello

View GitHub Profile
@julioarguello
julioarguello / 2repos-sync.sh
Created December 5, 2016 17:27 — forked from yorammi/2repos-sync.sh
Sync 2 remote repositories script - Just define the 3 variables (use export command for that!)
#!/bin/bash
# REPO_NAME=<repo>.git
# ORIGIN_URL=git@<host>:<project>/$REPO_NAME
# REPO1_URL=git@<host>:<project>/$REPO_NAME
rm -rf $REPO_NAME
git clone --bare $ORIGIN_URL
if [ "$?" != "0" ]; then
echo "ERROR: failed clone of $ORIGIN_URL"