leowebguy / git-info
Output git info over twig
Installs: 11
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 1
Type:craft-plugin
Requires
- php: ^8.2
- craftcms/cms: ^5.0
Requires (Dev)
- craftcms/ecs: dev-main
- craftcms/phpstan: dev-main
- craftcms/rector: dev-main
- laravel/pint: ^1.14.0
README
Output git info over twig
Installation
Shell
composer require leowebguy/git-info -w && php craft plugin/install git-info
DDEV
ddev composer require leowebguy/git-info -w && ddev exec php craft plugin/install git-info
Usage
{{ craft.git.branch }}
>> current branch, i.e: stage
{{ craft.git.remoteUrl }}
>> i.e: github.com:leowebguy/git-info.git
{{ craft.git.lastTag }}
>> i.e: 3.1.2
{{ craft.git.commitHash }}
>> last commit hash
{{ craft.git.commitAuthor }}
>> last commit author (name)
{{ craft.git.commitDate }}
>> last commit date
{% if not craft.app.config.custom.isProd %} <div style="position: fixed; bottom: 1rem; right: 1rem; padding: 6px 10px; text-align: right; border: solid 1px #eee; z-index: 999;"> {{ 'branch: ' ~ craft.git.branch }}<br> {{ 'remote url: ' ~ craft.git.remoteUrl }}<br> {{ 'last tag: ' ~ craft.git.lastTag }}<br> {{ 'commit hash: ' ~ craft.git.commitHash }}<br> {{ 'commit author: ' ~ craft.git.commitAuthor }}<br> {{ 'commit date: ' ~ craft.git.commitDate }} </div> {% endif %}