From 542e1c331f3ed7d4b9de854d1e4c47242bd95317 Mon Sep 17 00:00:00 2001 From: sashaastiadi Date: Mon, 28 Oct 2024 17:12:45 +0000 Subject: [PATCH] Update # Version Control and Git Workflow --- %23-Version-Control-and-Git-Workflow.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/%23-Version-Control-and-Git-Workflow.md b/%23-Version-Control-and-Git-Workflow.md index 848d3a6..2286a2d 100644 --- a/%23-Version-Control-and-Git-Workflow.md +++ b/%23-Version-Control-and-Git-Workflow.md @@ -12,17 +12,13 @@ Read Open your Terminal (Command Prompt or Git Bash). Navigate to your desired directory where you want to clone the repository using the cd command. For example: - ```bash cd path/to/your/directory Clone the Repository: Use the following command to clone the repository: - ```bash Copy code git clone https://git.ourworld.tf/your_repo_url.git -Navigate into the Cloned Repository: -bash -Copy code +Navigate into the Cloned Repository: cd your_repo_name For detailed Git commands and workflows, check out the [Github guide](https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository) @@ -67,5 +63,5 @@ Before pushing your changes to the main repository, it’s essential to work on 1. **Create a New Branch**: Always create a new branch from the `development` branch before making changes. Use the following command: - ```bash + git checkout -b your_branch_name