1
Fork 0
mirror of https://github.com/RGBCube/Site synced 2025-08-01 13:37:49 +00:00

Fix Sisyphus blog codeblocks

This commit is contained in:
RGBCube 2024-12-07 21:31:33 +03:00
parent 40d807b671
commit 6a7dc4fcf5
No known key found for this signature in database

View file

@ -17,7 +17,7 @@ You just started a new project. You ran `cargo init`,
Those commands created the necessary files to work, it Those commands created the necessary files to work, it
also added the following lines to your .gitignore: also added the following lines to your .gitignore:
``` ```text
target target
__pycache__ __pycache__
bin bin
@ -45,7 +45,7 @@ to gitignore .DS_Store](/assets/github-ds-store-mr-list.webp)
Whatever. You just delete the file from the branch and Whatever. You just delete the file from the branch and
add the file's name to the repositories gitignore: add the file's name to the repositories gitignore:
``` ```text
target target
__pycache__ __pycache__
bin bin
@ -62,7 +62,7 @@ see that there is a whole directory that is irrelevant.
You tell that person to delete the directory from the You tell that person to delete the directory from the
branch and add it to the gitignore. The gitignore lives on: branch and add it to the gitignore. The gitignore lives on:
``` ```text
target target
__pycache__ __pycache__
bin bin
@ -73,7 +73,7 @@ bin
Then, someone that uses IntelliJ IDEA commits five hundred Then, someone that uses IntelliJ IDEA commits five hundred
XML files and the `.idea` directory. You repeat this process: XML files and the `.idea` directory. You repeat this process:
``` ```text
target target
__pycache__ __pycache__
bin bin
@ -104,7 +104,7 @@ of files (the gitignore) to a whitelist, by just
ignoring everything and manually un-ignoring desired ignoring everything and manually un-ignoring desired
files. You change your gitignore to this: files. You change your gitignore to this:
``` ```text
* *
!.gitignore !.gitignore