You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+14-1Lines changed: 14 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,7 @@ To install and run Jekyll natively on your machine, please follow these steps:
58
58
59
59
#### Step 3b: Run Jekyll in a Docker container
60
60
61
-
To avoid installing Jekyll natively and to assure it comes with all the necessary dependencies, you can run it in a preconfigured container image. The publishers of Jekyll offer a corresponding Docker image for such purposes. To run it, please follow these instructions:
61
+
To avoid installing Jekyll natively and to assure it comes with all the necessary dependencies, you can run it in a preconfigured container image. The publishers of Jekyll offer a corresponding [Docker image](https://github.com/envygeeks/jekyll-docker) for such purposes. To run it, please follow these instructions:
62
62
63
63
1. Install Docker
64
64
@@ -85,6 +85,19 @@ To avoid installing Jekyll natively and to assure it comes with all the necessar
85
85
86
86
This will compile the site and start serving the content locally. Information on the compilation process will be output to the command shell. Once it's ready, you can open your browser and visit `http://localhost:4000` to see your local version of the website.
87
87
88
+
> [!NOTE]
89
+
> The `$PWD` ("print working directory") command is commonly used in Unix-like operating systems to get the current working directory.
90
+
> However, on other systems, especially Windows, you might need to replace it with a different command. Below are the alternatives for different command line tools:
91
+
>
92
+
> | Command Line Tool | Command |
93
+
> |-------------------|---------|
94
+
> | **Unix-like Systems** | |
95
+
> | - Terminal | `$PWD` |
96
+
> | **Windows Systems** | |
97
+
> | - Powershell | `${PWD}` |
98
+
> | - CMD | `%CD%` |
99
+
> | - Git Bash for Windows | `/$(pwd)` |
100
+
88
101
### Step 5. Make your changes and commit
89
102
90
103
You should now be able to make your changes. Try to keep your commits as ‘atomic’ as possible; that is, commit only the changes necessary for a given set of functionality. Avoid large commits that change a lot of things, as this makes it harder to review your changes for unintended side effects and potential problems.
0 commit comments