From 94ab64b593750cfa979c18d1dce1178378a94770 Mon Sep 17 00:00:00 2001 From: Vasilis Date: Tue, 28 May 2024 14:04:08 +0200 Subject: [PATCH] Add cd instruction to git bash instructions Prevents some confusion with people trying to run git commands in the same directory they were in after cloning. --- .../setup/git-for-the-ss14-developer.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/en/general-development/setup/git-for-the-ss14-developer.md b/src/en/general-development/setup/git-for-the-ss14-developer.md index bfd4d72e0..49e47db07 100644 --- a/src/en/general-development/setup/git-for-the-ss14-developer.md +++ b/src/en/general-development/setup/git-for-the-ss14-developer.md @@ -128,6 +128,11 @@ Then, we'll enter the command for cloning **our** remote repository--not the `sp ![](https://i.imgur.com/Xn4AQLf.png) +Then **c**hange **d**irectory using: +``cd space-station-14`` + +(This may be diffrent if you cloned another fork, it's almost always being the same as the repository name) + Every Git command will look something like this--`git` and then a keyword like `add`, `commit`, `pull`, etc.

@@ -773,4 +778,4 @@ git fetch [username] git checkout [username]/[branch name] ``` -This also lets you make PRs to their remote branch, if you so desired. \ No newline at end of file +This also lets you make PRs to their remote branch, if you so desired.