Skip to content

How to create PR

Cesar Celis edited this page Sep 10, 2024 · 9 revisions
  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
Clone this wiki locally