I'm new to Git and would like to get your advice on how to properly installing zmeventnotification from Git. I'm using this guide
https://zmeventnotification.readthedocs ... stall.html. It says
To clone the latest stable release:
Code: Select all
git clone https://github.com/pliablepixels/zmeventnotification.git
cd zmeventnotification
# repeat these two steps each time you want to update to the latest stable
git fetch --tags
git checkout $(git describe --tags $(git rev-list --tags --max-count=1))
1. Does it matter in which directory I run the git clone command?
2. For a new installation, do I need to run the last 2 commands (git fetch and git checkout)?
3. To start the installation process, I assume that I need to run ./install.sh located in the /zmeventnotification directory, correct?
Please educate me. Many thanks.