--- title: "Git Commit" weight: 3 --- By committing your work in a GIT repository, you will be able to collaborate with your peers for reviews and contributions. Commit your work: ```sh git add . git commit -m 'initial version' ``` And push it on your GitHub account: ```sh git remote add origin git@github.com:nmasse-itix/hugo-workshop.git git push -u origin master ```