diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2024-02-10 21:01:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-10 21:01:31 +0100 |
commit | 855802ca4506733829e5dcaca7e0bd3f7295a9aa (patch) | |
tree | d64325b5e72a7ffaaf7f5f0011e994da813847d2 /docs/development/repositories/northstarmods.md | |
parent | ec70d375d1d764ea09edc14dec5d0e4dfa00ad78 (diff) | |
parent | 9c27c1c65145dc644c97f19558b63f70b98f3abf (diff) | |
download | NorthstarWiki-855802ca4506733829e5dcaca7e0bd3f7295a9aa.tar.gz NorthstarWiki-855802ca4506733829e5dcaca7e0bd3f7295a9aa.zip |
Merge branch 'main' into docs/rcondocs/rcon
Diffstat (limited to 'docs/development/repositories/northstarmods.md')
-rw-r--r-- | docs/development/repositories/northstarmods.md | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/development/repositories/northstarmods.md b/docs/development/repositories/northstarmods.md index 1798661..40ea4f0 100644 --- a/docs/development/repositories/northstarmods.md +++ b/docs/development/repositories/northstarmods.md @@ -5,3 +5,12 @@ description: Core squirrel mods # NorthstarMods TODO + +When adding new Sqirrel script source files that are from the base game, make sure to commit the unmodified file first. +In particular, on `main` they should committed as `Respawn` with the email address `respawn@northstar.tf`. + +```sh +git -c user.name="Respawn" -c user.email="<respawn@northstar.tf>" commit -m "Add SQUIRREL_FILE.nut from VPK_NAME" +``` + +This process is done to later leverage the power of `git blame` to see who authored a particular code line which assists with better understanding changes in the codebase. |