Script Editor: SVN Plugins – Arma Reforger
Jump to navigation
Jump to search
Lou Montana (talk | contribs) (Add infobox) |
Lou Montana (talk | contribs) (Add Resource Manager) |
||
Line 1: | Line 1: | ||
{{Infobox/WorkbenchPlugin | {{Infobox/WorkbenchPlugin | ||
|name= SVN Plugins | |name= SVN Plugins | ||
|editor= script | |editor= resource script | ||
|descr= CVS-related shortcut commands | |descr= CVS-related shortcut commands | ||
|shortcut= <nowiki/> | |shortcut= <nowiki/> | ||
Line 7: | Line 7: | ||
! SVN Blame | ! SVN Blame | ||
{{!}} | {{!}} | ||
{{Controls|Alt|Shift|B}} | {{Controls|Alt|Shift|B}}<br>''{{Link|Arma Reforger:Script Editor}} only'' | ||
{{!}}- | {{!}}- | ||
! SVN Diff | ! SVN Diff | ||
{{!}} | {{!}} | ||
{{Controls|Alt|Shift|I}} | {{Controls|Alt|Shift|I}}<br>''{{Link|Arma Reforger:Script Editor}} only'' | ||
{{!}}- | {{!}}- | ||
! SVN Log | ! SVN Log | ||
Line 36: | Line 36: | ||
{| class="wikitable" | {| class="wikitable" | ||
! Name | ! Name | ||
! Shortcut | ! style="min-width: 12em" | Shortcut | ||
! Description | ! Description | ||
! Command | ! Command |
Revision as of 18:27, 15 February 2024
SVN Plugins | ||||||
---|---|---|---|---|---|---|
This plugin is available in: | ||||||
| ||||||
CVS-related shortcut commands | ||||||
File: SCR_SVNPlugin.c |
SVN plugins are keyboard shortcuts to SVN commands - more precisely TortoiseSVN commands by default. They are defined in SCR_SVNPlugin.c.
Commands
- the $path parameter is replaced by the absolute file path between double quotes ("), e.g "C:
\Users \John Bob \MyFile.c".
Name | Shortcut | Description | Command |
---|---|---|---|
SVN Blame | Alt + ⇧ Shift + B | List the last author of each line, to find the culprit |
TortoiseProc /command:blame /path:$path /startrev:1 /endrev:-1 /ignoreeol /ignoreallspaces /line:$line gitex blame $path |
SVN Diff | Alt + ⇧ Shift + I | List the changes between the repository and the local file |
TortoiseProc /command:diff /path:$path gitex difftool $path |
SVN Log | Alt + ⇧ Shift + L | Show the file's changes commit history |
TortoiseProc /command:log /path:$path gitex filehistory $path |