summaryrefslogtreecommitdiff
path: root/data/blogs/1.md
diff options
context:
space:
mode:
Diffstat (limited to 'data/blogs/1.md')
-rw-r--r--data/blogs/1.md8
1 files changed, 6 insertions, 2 deletions
diff --git a/data/blogs/1.md b/data/blogs/1.md
index f1168ee..2a0494b 100644
--- a/data/blogs/1.md
+++ b/data/blogs/1.md
@@ -40,11 +40,15 @@ It was a normal day. I was thinking of backing up simpliCity using GitHub. Becau
## The Problem
First, I made a new repo in GitHub, connect the git repo to the GitHub repo using **git remot**e, rename the master branch to main, and push it to GitHub using **git push**-
- fatal: The push operation includes a file which exceeds GitHub's file size restriction of 100MB
+```{: .txt .pre}
+fatal: The push operation includes a file which exceeds GitHub's file size restriction of 100MB
+```
..Alright then. Turns out I included the temporary, automatically-generated Unity project files and folder. To fix this, I added the .gitignore template for Unity to tell Git to simply ignore the files and folder, and upload it again-
- fatal: The push operation includes a file which exceeds GitHub's file size restriction of 100MB
+``` {: .txt .pre}
+fatal: The push operation includes a file which exceeds GitHub's file size restriction of 100MB
+```
Still the same error. Turns out that I have to remove the history of the ignored file, alias I have to make git forget about all of the temp files. **And this is where I messed up.**