From d852c5ac0d7b8fe82ab14596bccd9d95071d3ec0 Mon Sep 17 00:00:00 2001 From: And4po Date: Wed, 6 Mar 2024 12:27:05 +0000 Subject: [PATCH] Getting Started: Fix small typo (#402) It fixes a small typo on the "First repository" document. Reviewed-on: https://codeberg.org/Codeberg/Documentation/pulls/402 Reviewed-by: Panagiotis "Ivory" Vasilopoulos Co-authored-by: And4po Co-committed-by: And4po --- content/getting-started/first-repository.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/getting-started/first-repository.md b/content/getting-started/first-repository.md index e076e36..32d5ddb 100644 --- a/content/getting-started/first-repository.md +++ b/content/getting-started/first-repository.md @@ -258,7 +258,7 @@ Branch 'main' set up to track remote branch 'main' from 'origin'. If your local copy of the repository is missing some commits that exist in the remote repository, pushing will result in an error. There are two ways to fix this: - Run `git pull` to combine your local changes with the changes that exist in the remote repository. If this does not work, please follow the instructions in your terminal. -- If you know what you are doing, you can also overwrite the remote repository uaing `git -f push`. +- If you know what you are doing, you can also overwrite the remote repository using `git -f push`. This action will **permanently** alter your remote repository and is not suitable if you are working on a project together with other people. {% endadmonition %}