1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
|
<?xml version="1.0" ?>
<GPS>
<!-- Git status -->
<action name="generic_git_local_status" show-command="false" output="none" category="">
<shell>pwd</shell>
<external>git --no-pager ls-files --full-name -m -c -t $2-</external>
<shell>VCS.status_parse "Git" "%1" FALSE FALSE "%2"</shell>
<external>git --no-pager diff --cached --name-status $2-</external>
<shell>VCS.status_parse "Git" "%1" FALSE FALSE "%6"</shell>
</action>
<action name="generic_git_status" show-command="false" output="none" category="">
<shell output="">echo "Querying status for $2-"</shell>
<shell>pwd</shell>
<external>git --no-pager ls-files --full-name -m -c -t $2-</external>
<shell>VCS.status_parse "Git" "%1" FALSE FALSE "%2"</shell>
<external>git --no-pager diff --cached --name-status $2-</external>
<shell>VCS.status_parse "Git" "%1" FALSE FALSE "%6"</shell>
</action>
<action name="generic_git_diff_head" show-command="false" output="none" category="">
<shell output="">echo "Getting comparison for $1 ..."</shell>
<shell lang="python">vcs.git.from_git_root ("$1")</shell> <!-- relative to root -->
<external>git --no-pager show HEAD:%1</external>
<shell>dump "%1" TRUE</shell> <!-- dump git-show in temporary file -->
<external>diff --normal -p %1 $1</external>
<on-failure>
<shell>base_name "$1"</shell>
<shell>dump "%2" TRUE</shell> <!-- dump diff in temporary file -->
<shell>File "%1"</shell> <!-- a GPS.File for diff's output -->
<shell>File "$1"</shell> <!-- a GPS.File for full file name -->
<shell>Hook "diff_action_hook"</shell>
<shell>Hook.run %1 "$1" null %2 %3 "%5 [HEAD]"</shell>
<!-- run: diff_action_hook(
vcs_file=filename,
orig_file=null,
new_file=GPS.File(filename),
diff_file=GPS.File(diff),
title= "base_name(filename) [HEAD]" -->
<shell>delete "%5"</shell>
<shell>delete "%9"</shell>
</on-failure>
<shell>delete "%2"</shell>
</action>
<!-- Git add (no commit) -->
<action name="generic_git_add_no_commit" show-command="false" output="none" category="">
<shell output="">echo "Adding file(s) $2-"</shell>
<external>git --no-pager add "$2-"</external>
<on-failure>
<shell output="">echo "Git error:"</shell>
<shell output="">echo "%2"</shell>
</on-failure>
</action>
<!-- Git commit -->
<action name="generic_git_commit" show-command="false" output="none" category="">
<shell output="">echo "Committing file(s) $2-"</shell>
<shell>dump "$1" TRUE</shell>
<external>git --no-pager commit --include -F "%1" "$2-"</external>
<on-failure>
<shell output="">echo "Git error:"</shell>
<shell output="">echo "%2"</shell>
</on-failure>
<shell>delete "%2"</shell>
<shell>Hook "file_changed_on_disk"</shell>
<shell>Hook.run %1 null</shell>
</action>
<!-- Git annotate -->
<action name="generic_git_annotate" show-command="false" output="none" category="">
<shell output="">echo "Querying annotations for $1"</shell>
<external>git --no-pager annotate "$1"</external>
<shell>VCS.annotations_parse "Git" "$1" "%1"</shell>
</action>
<!-- Git history -->
<action name="generic_git_history" show-command="false" output="none" category="">
<shell output="">echo "Querying history for $1"</shell>
<external>git --no-pager log --pretty=format:[%%h;%%cn;%%cd;%%s%%n%%b;] "$1"</external>
<shell>VCS.log_parse "Git" "$1" "%1"</shell>
</action>
<action name="generic_git_history_text" show-command="false" output="none" category="">
<shell output="">echo "Querying history for $1"</shell>
<external>git --no-pager log "$1"</external>
<shell>base_name "$1"</shell>
<shell>dump "%2" TRUE</shell>
<shell>Editor.edit "%1"</shell>
<shell>Editor.set_title "%2" "Log for %3"</shell>
<shell>Editor.set_writable "%3" FALSE</shell>
<shell>MDI.split_vertically TRUE</shell>
<shell>delete "%5"</shell>
</action>
<action name="generic_git_history_rev" show-command="false" output="none" category="">
<shell output="">echo "Querying history for $2"</shell>
<external>git --no-pager show $1 --pretty=format:[%%h;%%cn;%%cd;%%s%%n%%b;] "$2"</external>
<shell>VCS.log_parse "Git" "$2" "%1"</shell>
</action>
<!-- Git revision -->
<action name="generic_git_revision" show-command="false" output="none" category="">
<shell output="">echo "Getting $2 at revision $1"</shell>
<shell lang="python">vcs.git.from_git_root ("$2")</shell>
<external>git --no-pager show "$1:%1"</external>
<shell>base_name "$2"</shell>
<shell>dump "%2" FALSE</shell>
<shell>Editor.edit "%1"</shell>
<shell>Editor.set_title "%2" "%3 [$1]" "%3 [$1]"</shell>
<shell>Editor.set_writable "%3" FALSE</shell>
<shell>delete "%4"</shell>
</action>
<!-- Git -->
<vcs name="Git"
path_style="System_Default"
group_queries_by_directory="TRUE"
absolute_names="FALSE" atomic_commands="TRUE"
commit_directory="FALSE"
administrative_directory=".git">
<status_files action="generic_git_status"/>
<local_status_files action="generic_git_local_status"/>
<diff_head action="generic_git_diff_head"/>
<commit action="generic_git_commit"/>
<add_no_commit action="generic_git_add_no_commit"/>
<annotate action="generic_git_annotate"/>
<history action="generic_git_history"/>
<history_text action="generic_git_history_text"/>
<history_revision action="generic_git_history_rev"/>
<revision action="generic_git_revision"/>
<status label="Up to date" stock="vcs-up-to-date" />
<status label="Locally modified" stock="vcs-modified" />
<status label="Property modified" stock="vcs-modified" />
<status label="Needs merge" stock="vcs-needs-merge" />
<status label="Needs update" stock="vcs-needs-update" />
<status label="Contains merge conflicts" stock="vcs-has-conflicts" />
<status label="Removed" stock="vcs-removed" />
<status label="Added" stock="vcs-added" />
<status_parser>
<regexp>(^|\n)(.)( |\t)([^/\n]*/)*([^ \n]+)</regexp>
<status_index>2</status_index>
<file_index>5</file_index>
<status_matcher label="Added">A</status_matcher>
<status_matcher label="Locally modified">C</status_matcher>
<status_matcher label="Up to date">H</status_matcher>
</status_parser>
<local_status_parser>
<regexp>(^|\n)(.)( |\t)([^/\n]+/)*([^ \n]+)</regexp>
<status_index>2</status_index>
<file_index>5</file_index>
<status_matcher label="Added">A</status_matcher>
<status_matcher label="Locally modified">C</status_matcher>
<status_matcher label="Up to date">H</status_matcher>
</local_status_parser>
<annotations_parser>
<regexp>(........)\t\(([^\t]+)\t(....-..-..) (..:..)[^\t]+\t([^\)])(.*)(\n|$)</regexp>
<repository_revision_index>1</repository_revision_index>
<author_index>2</author_index>
<date_index>3</date_index>
<file_index>6</file_index>
<tooltip_pattern>Revision \1 on \3 \4, Author \2</tooltip_pattern>
</annotations_parser>
<log_parser>
<regexp>(^|\n)\[([^;\n]+);([^;\n]*);([^;\n]*);([^;]*);\]</regexp>
<repository_revision_index>2</repository_revision_index>
<author_index>3</author_index>
<date_index>4</date_index>
<log_index>5</log_index>
</log_parser>
</vcs>
</GPS>
|