From: bones_was_here Date: Sat, 1 Mar 2025 21:58:01 +0000 (+1000) Subject: git howto: document basic initial setup for git push X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=244b52d8671d1a6bfe081624e6a259f8fbab19da;p=xonotic%2Fxonotic.wiki.git git howto: document basic initial setup for git push --- diff --git a/Git.md b/Git.md index f39f46e..5c62f14 100644 --- 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 ---------------------