Pushing a patch to the VPP Documentation

Pushing a Patch

I build and load the documents using a mac, but these instuctions should be portable to any platform. I used the Python virtual environment.

  1. Review the changes
git status
  1. Specify which files that will be pushed
git add <filename>
  1. Commit the changes locally
git commit -s
  1. Submit the changes for review
git review

Reviewing a Patch

  1. Getting the patch for review
git review -d <review number>
  1. Look at the changes
git status
  1. Edit the changes you would like to add
  2. Specify which files you changed
git add <filename>
  1. Commit the changes locally
git commit --amend -s
  1. Submit the changes for review
git review

Getting the Latest Sources

git reset --hard origin/master
git checkout master