updated README.md

This commit is contained in:
2021-10-24 01:16:31 -03:00
parent 677cec6fed
commit 1534ee5eeb
+26
View File
@@ -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
```