Sha256: ce08fec63231532bd112f19e7119357aaa8fd113ae3e2b7b69d9afad66907acc

Contents?: true

Size: 291 Bytes

Versions: 11

Compression:

Stored size: 291 Bytes

Contents

#!/bin/bash

###
# This scripts updates the local repo with the latest changes from github.
#
# The master branch will be REPLACED with what's in github and all local changes
# will be LOST.
###

git checkout master
git fetch -f origin
git fetch --tags origin
git reset --hard origin/master

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
collection-json-browser-0.0.11 test/javascripts/scripts/update-repo.sh
collection-json-browser-0.0.10 test/javascripts/scripts/update-repo.sh
collection-json-browser-0.0.9 test/javascripts/scripts/update-repo.sh
collection-json-browser-0.0.8 test/javascripts/scripts/update-repo.sh
collection-json-browser-0.0.7 test/javascripts/scripts/update-repo.sh
collection-json-browser-0.0.6 test/javascripts/scripts/update-repo.sh
collection-json-browser-0.0.5 test/javascripts/scripts/update-repo.sh
collection-json-browser-0.0.4 test/javascripts/scripts/update-repo.sh
collection-json-browser-0.0.3 test/javascripts/scripts/update-repo.sh
collection-json-browser-0.0.2 test/javascripts/scripts/update-repo.sh
collection-json-browser-0.0.1 test/javascripts/scripts/update-repo.sh