Expert-System Create branches git branch ralph_branch git branch luis_branch git branch mar_branch git branch shan_branch Clone repository to update local files with latest commits git clone https://github.com/SCJAB/Expert-System.git git pull View current branch and list all branches git branch # to view current branch git branch -a # to list all branches If you're on the master branch and want to go to your branch git checkout ralph_branch git checkout luis_branch git checkout mar_branch git checkout shan_branch After making changes git add . git commit -m "Your comment here" Push changes to specific branches git push origin master git push origin ralph_branch git push origin luis_branch git push origin mar_branch git push origin shan_branch