Compare commits
35
Commits
master
..
ecdc0675ea
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ecdc0675ea | ||
|
|
91499a5789 | ||
|
|
338a61a284 | ||
|
|
39e02f0e40 | ||
|
|
d07f704510 | ||
|
|
b08f866fce | ||
|
|
547fbccc90 | ||
|
|
07f43152fe | ||
|
|
b8840497a8 | ||
|
|
c4e07bb81b | ||
|
|
305bf1b595 | ||
|
|
0dfe660a65 | ||
|
|
6ad71b5007 | ||
|
|
55cb4c3f13 | ||
|
|
b490faa92a | ||
|
|
ae57b5f896 | ||
|
|
cb1d37f4e7 | ||
|
|
46c44ce72f | ||
|
|
bcf56d0f34 | ||
|
|
170f5381fe | ||
|
|
20bd5cfa3e | ||
|
|
d53c773f4a | ||
|
|
da87cb46cb | ||
|
|
d6fdc99a0a | ||
|
|
504130b622 | ||
|
|
c48594a23c | ||
|
|
0c2198e7c2 | ||
|
|
47ca47fbd7 | ||
|
|
8c40c8759b | ||
|
|
51f54d32af | ||
|
|
5d30a8993a | ||
|
|
17ab177a81 | ||
|
|
4e0e4c3af5 | ||
|
|
1534ee5eeb | ||
|
|
677cec6fed |
Vendored
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,29 +1,31 @@
|
||||
#### A Free and Opensource Library Manager writen in Java
|
||||
|
||||
#### Um Gerenciador de Bibliotecas grátis e opensource escrito em Java
|
||||
|
||||
------
|
||||
|
||||
### Clone this repository
|
||||
|
||||
***HTTPS:***
|
||||
HTTPS: https://git.librography.com/flashlan/Librography.git
|
||||
|
||||
`git clone https://git.librography.org/ci/Librography.git`
|
||||
|
||||
or
|
||||
|
||||
`git clone https://github.com/flashlan/Librography.git`
|
||||
|
||||
***SSH:***
|
||||
SSH: git@git.librography.com:flashlan/Librography.git
|
||||
|
||||
|
||||
`git clone git@git.librography.org:ci/Librography.git`
|
||||
|
||||
or
|
||||
### Creating a new repository on the command line
|
||||
|
||||
`git clone git@github.com:flashlan/Librography.git`
|
||||
```
|
||||
touch README.md
|
||||
git init
|
||||
|
||||
## Librography
|
||||
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
|
||||
```
|
||||
|
||||
## GoldenOwl
|
||||
|
||||
---------
|
||||
|
||||
@@ -63,5 +65,5 @@ Library Manager System writen in Java-Swing available for Windows, Linux and Mac
|
||||
|
||||
---
|
||||
Softwares:
|
||||
https://cloud.librography.org/index.php/s/3kQZ9DkmAGaCWw6
|
||||
https://cloud.librography.com/index.php/s/3kQZ9DkmAGaCWw6
|
||||
|
||||
|
||||
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Binary file not shown.
@@ -1,56 +0,0 @@
|
||||
GIT Librography
|
||||
|
||||
git add .
|
||||
git commit -m "mensagem"
|
||||
# Enviar mudanças (ambos)
|
||||
git push origin master
|
||||
|
||||
# atualizar arquivos do repositorio remoto para o local
|
||||
git pull origin master
|
||||
|
||||
#Rotulando (o 1b2e1d63ff representa os 10 primeiros caracteres do id de commit)
|
||||
git log
|
||||
git tag 1.0.0 1b2e1d63ff
|
||||
|
||||
# Branchs
|
||||
git checkout -b funcionalidade_x
|
||||
# retorne para o master usando
|
||||
git checkout master
|
||||
# e remova o branch da seguinte forma
|
||||
git branch -d funcionalidade_x
|
||||
# envie o branch para seu repositório remoto
|
||||
git push origin <funcionalidade_x>
|
||||
|
||||
# merge (para fazer merge de um outro branch ao seu branch ativo)
|
||||
git diff <branch origem> <branch destino>
|
||||
git merge <branch>
|
||||
|
||||
# sobrescrever alterações locais
|
||||
git checkout -- <arquivo>
|
||||
# ou recupere o histórico mais recente do servidor
|
||||
git fetch origin
|
||||
git reset --hard origin/master
|
||||
|
||||
@Github
|
||||
# git init
|
||||
git add .
|
||||
git commit -m "mensagem"
|
||||
git remote -v
|
||||
git config --global core.compression 0
|
||||
git config --global pack.window 1
|
||||
git push -u github master
|
||||
|
||||
@Gitea
|
||||
git push origin master --force
|
||||
|
||||
|
||||
- erro de disconnect github push
|
||||
# git config --global core.compression 0
|
||||
|
||||
### Manage urls git remote ####
|
||||
git remote -v
|
||||
git remote add github git@github.com:flashlan/Librography.git
|
||||
|
||||
# setar multiplos remotes para atualizar com um comando (push)
|
||||
git remote set-url --add --push origin git@github.com:flashlan/Librography.git
|
||||
|
||||
Reference in New Issue
Block a user