Git basics
Git is a way to historize your code whenever you work collaboratively on code. If you want a complete GIT guide you can download the Git Book:
Git main command
Git branch
Git branches are effectively a pointer to a snapshot of your changes. When you want to add a new feature or fix a bug—no matter how big or how small—you spawn a new branch to encapsulate your changes.
Summary of the GitHub Desktop guide:
- Create a branch
- Stage changes
- Discard changes
- Commit changes
- Push changes
Summary of the Visual Studio Code Guide
- Create a branch
- Make and Push a commit
Summary of the Visual Studio Code Guide
- Create a branch
- Make a commit
- Push commit