1
0
mirror of https://github.com/AllanWang/Frost-for-Facebook.git synced 2024-09-18 21:12:24 +02:00
Frost-for-Facebook/files/update-dev.txt
Allan Wang d6c5bcd56e Small miscellaneous fixes
* mist

* Add back experimental section

* Remove update dev sh
2017-07-04 14:11:52 -04:00

16 lines
362 B
Bash

#!/usr/bin/env bash
# Script to reset dev branch to master
# Once it is squashed and merged on github
# Copy this to a sh file, which is gitignored
# So there won't be save conflicts
git checkout dev
git cmp hard rebase
git branch -f dev-bak dev
git checkout master
git pull -f origin master
git branch -f dev master
git checkout dev
git push -u -f origin dev