My short question is - is there a possibility to add description (message) to staged files? Some alternative like "git commit -m "Fancy message goes here"".
Thanks.
My short question is - is there a possibility to add description (message) to staged files? Some alternative like "git commit -m "Fancy message goes here"".
Thanks.
Staged files are purely local to your repo and not available for review (because nobody else would have access to your local repo)
Commits, on the other hand, can be pushed and reviewed.
Typically on a Gerrit server, which will allow reviews and votes, and will either reject those commits, and push them in turn to the target repo, in a "guarded commits" way.