GitHub - GQDeltex/ft_transcendence GitHub Wiki
How to work with issues and pull requests?
- Select the Issue
- Assign yourself
- Create a branch
- copy the git commands from the webpage
- run the commands in terminal inside project folder
- change the code
- test it
- git add - git commit -m "" - git push
- click on Compare & pull request
- Assign yourself
- write a comment
- wait for the CI-Pipline to finish
- wait for the reviewer and answer possible questions
How to update the working branch from main?
- git checkout main
- git pull
- git checkout [working branch]
- git pull
- in case of uncommitted files stash or commit them
- git merge main
- git stash apply in case you stashed before
- resolve merge conflicts [maybe commit]
- git push