gamemode
gamemode copied to clipboard
Do I need to use Git Pull to update from 1.5.1 to 1.6?
So I want to update from 1.5.1 to 1.6 but doing the following doesn't seem to work.
git clone https://github.com/FeralInteractive/gamemode.git cd gamemode git checkout 1.6 # omit to build the master branch ./bootstrap.sh
What should I type in my terminal to update?
Navigate to your 1.5.1 source directory (i.e. gamemode
) and try the following:
git pull origin master
git checkout 1.6
./bootstrap.sh
Thanks I'll try it when I get home, but i have to type in cd gamemode first right?
Thanks I'll try it when I get home, but i have to type in cd gamemode first right?
Yes.
Odd it didn't work, do I need to delete the files already present in there first?