mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 09:32:12 +01:00
4fc30fca05
- git hook to automatically update revision number after commiting changes
6 lines
124 B
Bash
Executable File
6 lines
124 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Writes git revision into git_revision file
|
|
#
|
|
git show-ref refs/heads/master | cut -d " " -f 1 > git_revision
|