Some Updates for Jekyll + GitHub Pages
GitHub Warning When viewing the blog repository, GitHub showed a warning — clearly indicating that a dependency needed updating: So I ran the updates: Installation Error During , the following error occurred: This turned out to be a dependency issue. After trying several solutions, this one finally worked: With successfully installed, running: completed without errors. Startup Warnings There were warnings on startup that I couldn't leave alone: The first warning is about being renamed to : simply replace with in . The second is the warning, which is a bit more involved — see the next section. The third is a error. The reported line number may not account for comments, so just carefully inspect and fix the syntax. Handling the Warning This error occurs because is used in the . The fix involves adding a GitHub token and a cert file. 1. Follow the instructions in Create a personal access token — when selecting scopes, check . 2. Open (or , or whichever shell config you use) and add the following line, replacing the placeholder string with your newly generated token: 3. Download the file from here. Save it to your project directory and add to . 4. Add the path to in your (or , or other shell config): 5. Restart the terminal and run the startup command. The server starts without any warnings. All issues resolved.