using git on the command line you really won’t need to know much more than a small handful of commands. in case anyone wants a quick walkthrough, let’s install @Olivier’s dunes script:
ssh we@192.168.1.90
note that your ip address might be different and should be used instead of mine
then enter pw sleep
change directory to where the scripts are stored:
cd dust/code
head to dunes’ github page, click the green button on the right named ‘clone or download’ - copy the web url for the repository.
back on the command line:
git clone https://github.com/oliviercreurer/dunes.git
if ever there are future updates to dunes, you can install those:
cd dunes
git pull
to change directory up a level, ie return from dunes to the code directory with all the other scripts:
cd ..
at this level you can uninstall dunes:
rm -rf dunes
i find this method a lot simpler than using an ftp application, especially for updating scripts. hopefully it isn’t confusing to follow.