You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

  1. Download diff from review board. Git am wont work as it’s a raw download of the diff
  2. Apply the patch using git apply, this will bring the changes into your directory. Next commit them.
    1. $ git apply --whitespace=fix /path/to/0001-My-awesome-change.patch
    2. $ git commit --author='Contributor Name contributor@thedomain.com
  3. Change the author to the contributor who submitted the patch
    1. git commit --amend --author="New Author Name <email@address.com>"
  4. Change the commit message to something like below using -> git commit --amend
    CS-15274: Fix NPE on CreateVlanIpRangeCmd()
    Signed-off-by: Nitin Mehta nitin.mehta@citrix.com
  5. Git push
  • No labels