Hyperledger requires that every commit be signed. This is done via git -s if you're on the command line and produces the signed-off-by line in the commit. Since we haven't done this we can either
Try to amend every commit with a signature
Squash the commits and sign the squashed list for the Hyperledger git repo
What is the preference? It is faster if I squash and sign but perhaps we don't want that? Can we sign commits going forward?
Detailed Description
Hyperledger requires that every commit be signed. This is done via
git -s
if you're on the command line and produces the signed-off-by line in the commit. Since we haven't done this we can eitherWhat is the preference? It is faster if I squash and sign but perhaps we don't want that? Can we sign commits going forward?