./configure
./build_em.sh
Also check out this simple documentation for git: https://rogerdudler.github.io/git-guide/
ssh-keygen -t ed25519 -C "[email protected]"
Do this once when you want to start editing code on your computer.
git clone [email protected]:joscul/rapture.git
Do this every time you start a new session.
git pull
Do this when you are unsure what changes you have made.
git status
git diff
Do this after you have coded something awesome. You will be prompted to write a message, just save and quit the file after you have written a good commit message
git add .
git commit
git push