From 4c59a243dc6ae7b002696db38ec30dfe16c973f3 Mon Sep 17 00:00:00 2001 From: Griatch Date: Tue, 6 Dec 2022 15:56:56 +0100 Subject: [PATCH] Fix typo in version-control docs --- docs/source/Coding/Version-Control.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/Coding/Version-Control.md b/docs/source/Coding/Version-Control.md index 9f66014a7b..f8af7a380e 100644 --- a/docs/source/Coding/Version-Control.md +++ b/docs/source/Coding/Version-Control.md @@ -295,7 +295,7 @@ You can't do `git push upstream` unless you have write-access to the upstream Ev This should be done in your fork of Evennia. You should _always_ do this in a _separate git branch_ based off the Evennia branch you want to improve. git checkout main (or develop) - git branch - b myfixbranch + git branch -b myfixbranch Now fix whatever needs fixing. Abide by the [Evennia code style](./Evennia-Code-Style.md). You can `git commit` commit your changes along the way as normal.