29 lines
492 B
Plaintext
29 lines
492 B
Plaintext
GIT Librography
|
|
|
|
# atualizar arquivos do repositorio remoto para o local
|
|
git pull 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
|
|
|
|
|
|
|