Last active
January 12, 2024 01:52
Revisions
-
jsoref renamed this gist
Jan 12, 2024 . 1 changed file with 4 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,9 @@ # Premise * check-spelling should be able to work with anything. * macOS has some file system character constraints that have proven to be a bit problematic. # Use Docker (or an equivalent) to run Alpine Linux ## Set up an alpine environment `docker run -it alpine` -
jsoref created this gist
Jan 12, 2024 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,25 @@ check-spelling should be able to work with anything. macOS has some file system character constraints that have proven to be a bit problematic. You can use Docker (or an equivalent) to run Alpine Linux: ## Set up an alpine environment `docker run -it alpine` ## Add required tools `apk add curl git github-cli perl` ## Connect to GitHub `gh auth login` ``` ? What account do you want to log into? GitHub.com ? What is your preferred protocol for Git operations? HTTPS ? Authenticate Git with your GitHub credentials? No ? How would you like to authenticate GitHub CLI? Login with a web browser ``` ## Set up git so it can push `gh auth setup-git`