News:

SMF - Installazione appena completata!

Menu principale

VB6 e git

Aperto da admin, Novembre 01, 2021, 09:34:24 PM

Discussione precedente - Discussione successiva

admin

Installare git sul server e sul computer.
Andare da linea di comando nella directory del progetto e  digitare:
git init
git remote add origin <server remoto>
git add *
git commit -m "commento"
git push origin master

Per aggiungere nuovi file
git add <file>
Per aggiornare
git commit -m "commento"
git push origin master

Per copiare dal server remoto in locale
git clone <server>