The purpose of this document is a to be a simple help for developers
Basic commands using Visual Studio Code
The following steps are when the task is to do a change in any of the code.
Step 1 - place yourself in the correct develop branch before
git checkout develop
Step 2 - Download latest content from remote repo and update local content
git pull
Step 3 - Do the changes to files or code in local repo and save. The add code adds the changes to a commit
git add .
Step 4 - Add all changes ready to be pushed to remote repo with message
git commit -m "your message"
Step 5 - Push content from local repo to remote repo
git push --set-upstream origin "branch"