diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2008-09-27 15:04:54 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2008-09-27 15:04:54 +0200 |
commit | 77723bb0fab0ff222127cc4f77e19e648f7c8072 (patch) | |
tree | 3c7e0c549b22cbc56596c5ce0edcfaeda8b0449c /bin | |
parent | a67d6ff08cab805785f12c4d5e7100766d8a0d7b (diff) |
pkg: Use .autocommit for automatic commits
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/pkg | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -517,6 +517,10 @@ pkg_status () { clear_line info "$1:\n" echo $vcs_status + if [[ -r .autocommit ]] { + git add . + git commit -m 'autocommit by pkg' + } } } |