last_git_commit
Return last git commit hash, abbreviated commit hash, commit message and author
last_git_commit | |
---|---|
Supported platforms | mac, linux, windows |
Author | @ngutman, @johnknapprs |
Returns | Returns the following dict: |
1 Example
commit = last_git_commit author = commit[:author] # author of the commit author_email = commit[:author_email] # email of the author of the commit hash = commit[:commit_hash] # long sha of commit short_hash = commit[:abbreviated_commit_hash] # short sha of commit
Documentation
To show the documentation in your terminal, run
pantograph action last_git_commit
CLI
It is recommended to add the above action into your Pantfile
, however sometimes you might want to run one-offs. To do so, you can run the following command from your terminal
pantograph run last_git_commit
To pass parameters, make use of the :
symbol, for example
pantograph run last_git_commit parameter1:"value1" parameter2:"value2"
It's important to note that the CLI supports primitive types like integers, floats, booleans, and strings. Arrays can be passed as a comma delimited string (e.g. param:"1,2,3"
). Hashes are not currently supported.
It is recommended to add all pantograph actions you use to your Pantfile
.
Source code
This action, just like the rest of pantograph, is fully open source, view the source code on GitHub