12-11-2012, 10:59 AM
You should always base you work/branches of dgud/master
Setup a remote (once)
git remote add dgud git://github.com/dgud/wings.git
For each new branch:
git fetch dgud
git checkout master
git merge --ff-only dgud/master (or git reset --hard dgud/master)
git checkout -B MyName/ChangeDescription dgud/master
The snapshots are based on pu
but the pu branch is temporary i.e. you can build and test it but not base your branch on it, it will be removed and remade each time I update it.
Setup a remote (once)
git remote add dgud git://github.com/dgud/wings.git
For each new branch:
git fetch dgud
git checkout master
git merge --ff-only dgud/master (or git reset --hard dgud/master)
git checkout -B MyName/ChangeDescription dgud/master
The snapshots are based on pu
but the pu branch is temporary i.e. you can build and test it but not base your branch on it, it will be removed and remade each time I update it.