]> git.rm.cloudns.org Git - xonotic/xonotic.wiki.git/commitdiff
git howto: document basic initial setup for git push
authorbones_was_here <bones_was_here@xonotic.au>
Sat, 1 Mar 2025 21:58:01 +0000 (07:58 +1000)
committerbones_was_here <bones_was_here@xonotic.au>
Sun, 2 Mar 2025 07:19:08 +0000 (17:19 +1000)
Git.md

diff --git a/Git.md b/Git.md
index f39f46ec26c307b69d1343f5cc22bf98221fe872..5c62f14bea56a6eeedbeffc8a5756212d49a7f1a 100644 (file)
--- a/Git.md
+++ b/Git.md
@@ -32,6 +32,22 @@ The current structure looks as follows:
 You can still use the `data/` directory as base for the game since darkplaces now supports `.pk3dir` directories natively.
 
 
+Configure git
+-------------
+
+Before creating your local branch and committing to it, make sure you’ve configured your username which will display in the logs, and commit email.
+- TortoiseGit GUI: Settings > Git > Config
+- terminal:
+    `git config --global user.name "Erebus1337"`
+    `git config --global user.email "Erebus1337@example.com"`
+
+To authenticate your pushes you'll need an ssh key:
+
+    ./all keygen
+
+And to add the pubkey at https://gitlab.com/-/user_settings/ssh_keys
+
+
 Creating a new branch
 ---------------------