Skip to content

Instantly share code, notes, and snippets.

@gialloporpora
Last active December 22, 2015 05:29
Show Gist options
  • Save gialloporpora/6424732 to your computer and use it in GitHub Desktop.
Save gialloporpora/6424732 to your computer and use it in GitHub Desktop.
SVN cheatsheet

SVN cheatsheet

Clonare da server remoto

svn checkout URL svn co URL

Aggiornare la copia locale

svn up

Per aggiornare a una specifica revisione:

svn up -r numero_revisione

Controllare lo stato delle modifiche

svn status

Per controllare lo stato aggiornato della copia remota:

svn status -u

Esempio di output:

Aggiungere un file

Per aggiungere un file che non è presente sulla copia remota

svn add nomefile

Invio del lavoro svolto al server

svn commit -m "Messaggio"

Ottenere informazioni utili

svn info
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment