From 1534ee5eebf7d81ba16abc9641bd70f329d6c12a Mon Sep 17 00:00:00 2001 From: flashlan Date: Sun, 24 Oct 2021 01:16:31 -0300 Subject: [PATCH] updated README.md --- README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/README.md b/README.md index e69de29..44719a7 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,26 @@ +### Clone this repository + +HTTPS: https://git.librography.com/flashlan/Librography.git + +SSH: git@git.librography.com:flashlan/Librography.git + + + +### Creating a new repository on the command line + +``` +touch README.md +git init + +git add README.md +git commit -m "first commit" +git remote add origin https://git.librography.com/flashlan/Librography.git +git push -u origin master +``` + +### Pushing an existing repository from the command line + +``` +git remote add origin https://git.librography.com/flashlan/Librography.git +git push -u origin master +``` \ No newline at end of file