Parsers: from raw data to stores

kora 5d0f6a598c New configuration for REALZ -- parser yet to update hace 1 año
ASPO 8a60f506e0 AGGIUNTO TUTTO hace 1 año
CONTROLLER VIRTUOSO 6ca5eb00b8 Upload all hace 2 años
DATA 8a60f506e0 AGGIUNTO TUTTO hace 1 año
FORMS 5d0f6a598c New configuration for REALZ -- parser yet to update hace 1 año
MPP 8a60f506e0 AGGIUNTO TUTTO hace 1 año
OVI 8a60f506e0 AGGIUNTO TUTTO hace 1 año
VARIE 8a60f506e0 AGGIUNTO TUTTO hace 1 año
corali 8a60f506e0 AGGIUNTO TUTTO hace 1 año
.gitignore 60ea0fc561 new_tests hace 2 años
README.md b960cd591c Aggiorna 'README.md' hace 2 años
b 8a60f506e0 AGGIUNTO TUTTO hace 1 año
s 8a60f506e0 AGGIUNTO TUTTO hace 1 año
styles.css 8a60f506e0 AGGIUNTO TUTTO hace 1 año
test.xml 05a939879e add lemmario_v4 hace 1 año
test_main.xml 8a60f506e0 AGGIUNTO TUTTO hace 1 año
test_new.xml 05a939879e add lemmario_v4 hace 1 año

README.md

CREARE REPOSITORY REMOTO

  1. Creare la repo sul sito (su GOGS o quel che sia)
  2. Darsi i permessi necessari, se serve
  3. Sulla cartella del progetto digitare

     a: git init
     b: git add
     c: git commit -m "messaggio-a-piacere"
     d: git remote add origin URL_DELLA_REPO
     e: git push -u origin master
    

Giusto per capire, i comandi fanno le seguenti cose:

  • a: apre una repo vuota nella cartella
  • b: aggiunge tutti i files nella cartella alla versione attuale, temporanea, della repo
  • c: fa il commit, ovvero crea un'istantanea rintracciabile del codice al punto in cui è, in base alla versione attuale
  • d: dice alla repo che da lì in poi si dovrà sincronizzare con l'URL remoto che gli avete passato
  • e: fa un push (ovvero copia il commit) dalla versione locale a quella remota, nel branch specificato (quello dopo origin, in questo caso "master" che è il default). Questo significa che il commit viene registrato in remoto (ed è scaricabile da altri); il bello del sistema è che i commit precedenti NON sono persi, si possono sempre ripristinare.