This is group project of ITMO students, representing Website for psychological tests and professional orientaion
- Check git is installed on your local machine, if not then download it here After installing you must configure your account:
git config --global user.name "your name"
git config --global user.email "your email"
- Clone the main branch into your local machine using this command:
git clone https://github.com/scobca/opd-professional-score.git
- Create your own branch where you will make changes:
git branch <your branch name>
- Switch into created branch that you've just made:
git checkout <your branch name>
- In your local branch run this command to add all changed files:
git add .
- Create commit using
git commit -m "your message in double quotes"
- Upload changes on Github
git push origin <your branch name>
If your branch appeared in our Github repository, I will check changes and open pull request or manually merge them into main branch, so before making other changes you will need to update main branch on your local machine and remove old branch
- Switch back to main branch:
git checkout main
- Update main branch:
git pull main
- Remove old branch, now it's unnecessary:
git branch -d <your branch name>
I will check changes in your branch and open pull request or manually merge them into main branch, so before making other changes