OsmAnd/build-scripts/sync_git_google.sh
Victor Shcherb 212bff2872 Fix build
2011-08-15 01:28:42 +02:00

23 lines
508 B
Bash
Executable file

#!/bin/sh
DIRECTORY=$(cd `dirname $0` && pwd)
GIT_DIR="$DIRECTORY"/osmand-git
GIT_URL=git://github.com/osmandapp/Osmand.git
if [ ! -d "$GIT_DIR" ]; then
git clone ${GIT_URL} "${GIT_DIR}"
fi
cd "$GIT_DIR"
git checkout .
git reset HEAD --hard
git checkout master
# First time add entries to .git/config (!) and add .netrc file
# [remote "google"]
# url = https://code.google.com/p/osmand/
# fetch = +refs/heads/*:refs/remotes/google/*
git push --all --force google
echo "Synchronization is ok"