Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Now let's add some files and add our first commit with the an associated message:

git add somefiles
git commit -m "My first Awesome commit" 

Note that this is just an example and the commit message should be much more explicit than that.

Now that everything is ready, you can sign off your commit, make sure that your git user matches your Linux Foundation identity, as this will be verified by the gerrit Gerrit server.

git review -s

You may be prompted for your Linux Foundation account password.

Now let's verify the commit hook work, this will show you the commit message and the sign off entry

...