From 244b52d8671d1a6bfe081624e6a259f8fbab19da Mon Sep 17 00:00:00 2001 From: bones_was_here Date: Sun, 2 Mar 2025 07:58:01 +1000 Subject: [PATCH] git howto: document basic initial setup for git push --- Git.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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 --------------------- -- 2.39.5