Skip to main content

Git

Initialize as git repository

git init
git remote add origin [Repository Link with SSH here]
git remote -v

Push changes to Remote Repository

git add .
git commit -m "commit message here"
git push origin master