update docs/help/contributing/010_PULL_REQUEST

- prepend brand icons on tabs
This commit is contained in:
mauwii 2023-02-19 22:33:49 +01:00
parent 7ef63161ba
commit 6082aace6d
No known key found for this signature in database
GPG Key ID: D923DB04ADB3F5AB

View File

@ -30,14 +30,14 @@ in the top right.
After you forked the Repository, you should clone it to your dev machine: After you forked the Repository, you should clone it to your dev machine:
=== "Linux:fontawesome-brands-linux: / MacOS:simple-apple:" === ":fontawesome-brands-linux:Linux / :simple-apple:macOS"
``` sh ``` sh
git clone https://github.com/<github username>/InvokeAI \ git clone https://github.com/<github username>/InvokeAI \
&& cd InvokeAI && cd InvokeAI
``` ```
=== "Windows:fontawesome-brands-windows:" === ":fontawesome-brands-windows:Windows"
``` powershell ``` powershell
git clone https://github.com/<github username>/InvokeAI ` git clone https://github.com/<github username>/InvokeAI `
@ -51,7 +51,7 @@ activate a venv first. Afterwards you can install the InvokeAI Package,
including dev and docs extras in editable mode, follwed by the installation of including dev and docs extras in editable mode, follwed by the installation of
the pre-commit hook: the pre-commit hook:
=== "Linux:fontawesome-brands-linux: / MacOS:simple-apple:" === ":fontawesome-brands-linux:Linux / :simple-apple:macOS"
``` sh ``` sh
python -m venv .venv \ python -m venv .venv \
@ -65,7 +65,7 @@ the pre-commit hook:
&& pre-commit install && pre-commit install
``` ```
=== "Windows:fontawesome-brands-windows:" === ":fontawesome-brands-windows:Windows"
``` powershell ``` powershell
python -m venv .venv ` python -m venv .venv `
@ -83,7 +83,7 @@ the pre-commit hook:
Make sure you are on main branch, from there create your feature branch: Make sure you are on main branch, from there create your feature branch:
=== "Linux:fontawesome-brands-linux: / MacOS:simple-apple:" === ":fontawesome-brands-linux:Linux / :simple-apple:macOS"
``` sh ``` sh
git checkout main \ git checkout main \
@ -91,7 +91,7 @@ Make sure you are on main branch, from there create your feature branch:
&& git checkout -B <branch name> && git checkout -B <branch name>
``` ```
=== "Windows:fontawesome-brands-windows:" === ":fontawesome-brands-windows:Windows"
``` powershell ``` powershell
git checkout main ` git checkout main `