How to create PR - cniackz/public GitHub Wiki

  1. Fork

  2. 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
  1. Update
git remote add upstream [email protected]:minio/operator.git
git fetch upstream
git checkout master
git rebase upstream/master
git push
  1. create branch
git checkout -b <some-name>
  1. Put your changes inside this repo
git add
git commit -m 'I am testing'
git push --set-upstream origin <the-branch>
  1. 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/...
⚠️ **GitHub.com Fallback** ⚠️