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