zynaddsubfx

ZynAddSubFX open source synthesizer
Log | Files | Refs | Submodules | LICENSE

APPENDIX_C-doc_getting_IT.txt (1919B)


      1 Appendix C: Ottenere ZynAddSubFX
      2 -------------------------------
      3 
      4 Normalmente ci sono diversi modi per ottenere una copia di ZynAddSubFX.
      5 
      6 SourceForge::
      7     http://sourceforge.net/projects/zynaddsubfx/files/
      8 Distribuition::
      9     apt/yum/others
     10 Git::
     11     git clone git://git.code.sf.net/p/zynaddsubfx/code zynaddsubfxg
     12 
     13 Introduzione a Git
     14 ~~~~~~~~~~~~~~~~~~~
     15 
     16 Per coloro che vogliono vivere "on the bleeding edge" o chi vuole essere certo che
     17 la prossima release abbia meno bug, si può avere il codice con git.
     18 Git è usato per gestire il codice sorgente di questo progetto ed è utile per 
     19 ottenere velocemente e facilmente una copia "up-to-date" del codice sorgente.
     20 
     21 Ottenere il codice sorgente
     22 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
     23 
     24 Per avere una copia dei sorgenti di ZynAddSubFX tutto il necessario da fare è:
     25 
     26 ---------------------------------------------
     27 git clone git://git.code.sf.net/p/zynaddsubfx/code zynaddsubfx
     28 
     29 cd zynaddsubfx
     30 
     31 #Download additional resources
     32 git submodule init
     33 git submodule update
     34 ---------------------------------------------
     35 
     36 Ora dovresti essere nella directory del codice sorgente.
     37 
     38 Per compilare facilmente si guardi l'Appendice B del manuale.
     39 
     40 Dare un'occhiata ai branch
     41 ^^^^^^^^^^^^^^^^^^^^^^^^^^
     42 
     43 Diciamo che lo sviluppo si è esteso ad una creazione di una feature che si vuole
     44 vedere in anteprima.
     45 Per il bene di questa guida, supponiamo che il nome del branch della feature che
     46 verrà è 'foo'.
     47 
     48 -----------------------------------------
     49 #checkout the foo branch from sourceforge
     50 git checkout --track -b foo origin/foo
     51 
     52 #lets checkout the primary branch again
     53 git checkout master
     54 
     55 #hop back to the other branch
     56 git checkout foo
     57 ----------------------------------------
     58 
     59 Ora si dovrebbe essere in grado di cambiare branches e andare nella build-directory
     60 (come descritto in Appendice B) e ricompilare ZynAddSubFX.
     61 
     62 NOTE: Quando si usano i branches può venir meno un po' di stabilità.
     63