Skip to content

Git

Git is a version control system that allows you to track changes in your code and collaborate with others.

Tutorial

Learn Git at Codecademy.

Git example

bash
git switch -c new-feature
git add .
git commit -m "Add new feature"
git push origin new-feature