From 61df18a86876df3874074de223e209d16ae24795 Mon Sep 17 00:00:00 2001 From: James McDonald Date: Wed, 4 Jan 2023 00:29:48 +0000 Subject: [PATCH] Fix typo --- content/posts/2022-27-12-git-intro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/posts/2022-27-12-git-intro.md b/content/posts/2022-27-12-git-intro.md index 36aad86..ad7b3e0 100644 --- a/content/posts/2022-27-12-git-intro.md +++ b/content/posts/2022-27-12-git-intro.md @@ -9,7 +9,7 @@ date: 2023-01-03 --- I was inspired to write this by a [Cloudflare guide](https://developers.cloudflare.com/pages/framework-guides/deploy-a-hugo-site/) on how to use Hugo with Cloudflare Pages. The guide is generally just fine, but it explicitly assumes a "fundamental understanding" of Git without it being very clear what that means. They go on to provide example git commands that have an error, trying to push before the first commit. For a beginner with "fundamental understanding", that sort of thing is pretty confusing. -Git is a powerful beast with a lot of possibilities, so much so that it can be very difficult for a newcomer to figure out where to get started. I’m going to ignore that entirely and explain what you absolutely have to know to use Git for solo projects, possibly with a few extra bits. If you want to collaborating with others there is a bunch of other stuff to learn, but once you are comfortable with what a Git repository looks like and how you can examine it you have a foundation to build on. +Git is a powerful beast with a lot of possibilities, so much so that it can be very difficult for a newcomer to figure out where to get started. I’m going to ignore that entirely and explain what you absolutely have to know to use Git for solo projects, possibly with a few extra bits. If you want to collaborate with others there is a bunch of other stuff to learn, but once you are comfortable with what a Git repository looks like and how you can examine it you have a foundation to build on. I've written this guide for Windows because that is in some ways the most awkward OS to set up. Most stuff should translate nicely to whatever platform you are on.