How to create PR - cniackz/public GitHub Wiki
-
Fork
-
Git clone from the forked repo
- Clone the forked repo in your local
$ git clone [email protected]:cniackz/<the-repository>.git
|
|___ From your own user
- Update
git remote add upstream [email protected]:minio/operator.git
git fetch upstream
git checkout master
git rebase upstream/master
git push
- create branch
git checkout -b <some-name>
- Put your changes inside this repo
git add
git commit -m 'I am testing'
git push --set-upstream origin <the-branch>
- In the web browser complete and submit your PR:
remote: Create a pull request for 'testing-branch' on GitHub by visiting:
remote: https://github.com/cniackz/...