So, have you been noodling and want to send that code somewhere safe? First, add a .gitignore file so you don’t add build or debug artifacts! Then, open a command prompt in the root of your code folder: git init
git add .
git commit -m "initialise repo with existing files."…