Git Version Control
Learn Gitlab
- Clone repository to local machine
- Create branch:
git checkout -b <branch_name>
- Make your changes
- Stage your changes:
git add .
- Commit your changes to your local checkout:
git commit -m <message>
- Push your changes to the remote:
git push