From 96cce0fa009cdfa91917819e303e2538900f2fda Mon Sep 17 00:00:00 2001 From: Jannik ZANDER Date: Sun, 15 May 2016 11:09:50 +0200 Subject: [PATCH] Add post-applypatch hook --- .git_template/hooks/cscope | 0 .git_template/hooks/gtags | 0 .git_template/hooks/post-applypatch | 7 +++++++ 3 files changed, 7 insertions(+) mode change 100644 => 100755 .git_template/hooks/cscope mode change 100644 => 100755 .git_template/hooks/gtags create mode 100755 .git_template/hooks/post-applypatch diff --git a/.git_template/hooks/cscope b/.git_template/hooks/cscope old mode 100644 new mode 100755 diff --git a/.git_template/hooks/gtags b/.git_template/hooks/gtags old mode 100644 new mode 100755 diff --git a/.git_template/hooks/post-applypatch b/.git_template/hooks/post-applypatch new file mode 100755 index 0000000..dbe2120 --- /dev/null +++ b/.git_template/hooks/post-applypatch @@ -0,0 +1,7 @@ +#!/bin/sh +.git/hooks/ctags >/dev/null 2>&1 & +.git/hooks/gtags >/dev/null 2>&1 & +.git/hooks/cscope >/dev/null 2>&1 & + + + -- 2.43.0