Create/copy file in cloned project site(eg:code.py)
Track file: git add code.py
Commit file: git commit -m “code review”
Push to remote server: git push origin(master)
check change ID on Gerrit
Verify pass: merge into focus branch
Verify failed
1.Add comments and mark as failed on Gerrit
2.Modify code according comments at local
3.git add code.py
4.git commit --amend (DONOT add -m)
5.git push origin
6.Code review again