https://www.linode.com/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/
git clone https://github.com/dawidkopczyk/grupa_ads.git
-
Do changes
-
Commit changes (make sure you are in the right folder grupa_ads)
git add .
git commit -m some_name
- Create local branch
git checkout -b branch_name
- Push from local branch to remote branch
git push origin branch_name
-
Go to Github and create pull request.
-
Come back to master and delete branch
git checkout master
git branch -d branch_name