Basic Workflow - Working on Project*
- Sync your local repository with the remote one by "pulling" the latest changes.
- This ensures that the code is most up-to-date before making changes.
- Edit the files in your preferred code editor, such as VSCode.
- Before committing, sync your local repository with the remote repository on GitHub by "pulling" or "fetching" the latest changes.
- This helps you avoid and resolve conflicts.
- Create a "commit" to save the changes you have made locally.
- Push the commit(s) to the remote repository on GitHub.com.
- This "uploads" your changes to GitHub, making them available to other collaborators.
*Note: This is a very basic workflow. It is recommended to use Git branching strategy for managing different version of code in parallel and merge them later.