How to create a new Patchset in Gerrit?

后端 未结 3 1074
不思量自难忘°
不思量自难忘° 2021-02-01 08:21

I am new to Gerrit and want to create a new Patch when new changes are submitted. I setup Gerrit with this guide https://review.typo3.org/Documentation/install-quick.html

<
3条回答
  •  伪装坚强ぢ
    2021-02-01 08:52

    Step 1: Install commit-msg hooks for gerrit

    scp -p -P 29418 localhost:hooks/commit-msg .git/hooks/
    

    Step 2: Create normal commit and push (for Patchset1)

    for example:

    git add Server.java
    git commit -m "server added"
    git push origin HEAD:refs/for/master
    

    Step 3: After doing some changes to Server.java

    Finally to create new Patchset (Patchset 2)

    git add Server.java
    git commit --amend
    git push origin HEAD:refs/for/master
    

    Repeat step 3 for further Patches

提交回复
热议问题