浏览代码

second initial commit - haha

Your Name 8 月之前
父节点
当前提交
9df420c07e
共有 8 个文件被更改,包括 47 次插入1 次删除
  1. 47 1
      README.md
  2. 二进制
      images/add-repository-button.png
  3. 二进制
      images/clone-project-to-desktop.png
  4. 二进制
      images/file-explorer.png
  5. 二进制
      images/new-repository.png
  6. 二进制
      images/registrar-example-square.png
  7. 二进制
      images/repository-created.png
  8. 二进制
      images/run-powershell.png

+ 47 - 1
README.md

@@ -1,3 +1,49 @@
 # kyleguy
+example static page setup
+---
 
-example static page setup
+## repository setup
+
+**Configure the your domain registrar's DNS**
+
+This assumes you are using the DNS provided by your domain registrar.  Some common registrars are Cloudflare, SquareSpace, Wix, GoDaddy, Gandi, Namecheap, and [others](https://www.icann.org/en/accredited-registrars).  FYI, I listed some bad and some good ones, not a review just blasting.
+
+Not necessarily the first thing that needs to be accomplished, but if it is done early time can be saved while the DNS provider tries to spread the word out to the internet about your domain.  Add a record for the domain name.  In this example we add `kyleguy.rome7.com`, you only add a record for the subdomain part, `kyleguy`.  You are the decision maker for what domain points to this site.  I did not want a site at `rome7.com` so I am creating a subdomain:
+
+![add-dns-record](images/registrar-example-square.png)
+
+My website will be hosted by pebbleguy.com.
+
+
+**Create a git repository**
+
+Login to your account on `git.pebbleguy.com`.  Click the add repository button:
+
+![click-add-repo](images/add-repository-button.png)
+
+Then fill out the form.  We will use some predefined options to template our gitignore file and have Gogs initialize the repository for us.
+
+![new-repo-settings](images/new-repository.png)
+
+This is what the mostly empty repository looks like if you were successful:
+
+![repo-created-screenshot](images/repository-created.png)
+
+
+**Get a copy of the repository on your computer**
+
+Open `powershell` or `cmd`:
+
+![run-powershell](images/run-powershell.png)
+
+You will clone the repository to your desktop, type these commands into the `powershell` terminal.  The output should match closely with the example.  You will want to replace the clone url with your own repository `https://git.pebbleguy.com/{{your_gogs_account_name}}/{{repository_name}}`
+```
+cd desktop
+git clone https://git.pebbleguy.com/kyle/kyleguy
+```
+
+![clone-repository](images/clone-project-to-desktop.png)
+
+With the repository cloned to your desktop successfully, you should be able to use the `Windows file explorer` to view the files:
+
+![file-explorer](images/file-explorer.png)

二进制
images/add-repository-button.png


二进制
images/clone-project-to-desktop.png


二进制
images/file-explorer.png


二进制
images/new-repository.png


二进制
images/registrar-example-square.png


二进制
images/repository-created.png


二进制
images/run-powershell.png