# Initialize and make your first commit
git init
git commit -m "first commit"
# Rename the branch to match the default branch on Trylle
git branch -M master
# Add the remote
git remote add origin
# Push your first commit
git push -u origin masterSearch for a command to run...