Updating to new RC ended up on 1.4.4
-
Went to update to the latest version of FOG and did a git pull and it seems to have installed 1.4.4 instead of the new RC. Did I miss a change in the update process?
-
You forgot to change branches to
dev-branch
orworking
.This can be done with:
git checkout dev-branch
or
git checkout working
Respectively.
-
I’ve already tried this. I was already on the dev-branch which is why I’m confused.
-
I deleted trunk again. Downloaded the git from scratch again and got the RC this time. I’m just not sure what happened the last time. I was already on DEV-branch. Whatever. I’m where I need to be now.
-
Then you may need to reset the state of your environment.
git reset --hard
git checkout dev-branch
git pull
…