cleaned uploads and moved everything to assets to allow for responsive image creation...
[danix.xyz.git] / content / articles / git-setup-own-server.md
index 4af29d5..5bd629b 100644 (file)
@@ -27,8 +27,8 @@ In order to use git I needed a place online where to store my projects, and I th
 So I started planning what I wanted my git server to have. Here's a list:
 
   * **Security** - I decided to make it work only under ssh, that way only someone who has the key can clone or access the repository. I also added an unprivileged git user that has only access to very few commands, so even if somebody manages to access through ssh he'll find himrself with only very few options available.
-  * **Notifications** - my server already tells me a lot of what happens, so I wanted my git service to do the same. I implemented a mail service that notifies me every time a new repository is added or everytime there's a push to a repository.
-  * **Automation** - I wanted to have less steps possible between creation of the project and deployment to production. Now in two steps I can create a repository and clone it to my local computer, and when I'm done I just need to push my modifications and the code is deployed automatically.
+  * {{< strike >}}**Notifications** - my server already tells me a lot of what happens, so I wanted my git service to do the same. I implemented a mail service that notifies me every time a new repository is added or everytime there's a push to a repository.{{< /strike >}}
+  * **Automation** - I wanted to have less steps possible between creation of the project and deployment to production. Now in two steps I can create a repository and clone it to my local computer, and when I'm done I just need to push my modifications and the code is deployed {{< em >}}automatically{{< /em >}}.
   * **Visibility** - I haven't yet decided if I want my code to be visible, so I haven't even started thinking about this possibility.
 
 <!--more-->