From a1bfdde818051b1bd8b1fa7b6c9779a2d4ff73f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerardo=20Marx=20Ch=C3=A1vez-Campos?= Date: Thu, 24 Sep 2020 00:05:40 +0000 Subject: [PATCH] Update 'Readme.md' --- Readme.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Readme.md b/Readme.md index b4707d7..7008e92 100644 --- a/Readme.md +++ b/Readme.md @@ -2,7 +2,7 @@ This a repository example to practice the Git basic commands. # First commit # -The first commit is the creation of the =file-a.md= file and some lines of code. +The first commit is the creation of the `file-a.md` file and some lines of code. Then the repository will be enable by @@ -10,7 +10,7 @@ Then the repository will be enable by $ git init ``` -after that our first file has been created and will be filled with the next lines of code using the =echo= command or =Vim= editor: +after that our first file has been created and will be filled with the next lines of code using the `echo` command or `Vim` editor: ``` shell vi file-a.md @@ -24,15 +24,15 @@ Line 2 Line 3 ``` -to quit =Vim= editor use =:wq!= in command mode (pressing first the ESC key) +to quit `Vim` editor use `:wq!` in command mode (pressing first the ESC key) -Then, we have to add the file we want to track by =git add = command: +Then, we have to add the file we want to track by `git add ` command: ``` shell $ git add file-a.md ``` -To finalize the process, we have to use the =git commit= command: +To finalize the process, we have to use the `git commit` command: ``` shell $ git commit -m "first commit"