Skip to content

Instantly share code, notes, and snippets.

@theclanks
Created October 28, 2014 15:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theclanks/90986a35a94bd1230ef6 to your computer and use it in GitHub Desktop.
Save theclanks/90986a35a94bd1230ef6 to your computer and use it in GitHub Desktop.
Criar Branch:
mkdir branches/2.14.0
svn add branches/2.14.0
svn cp trunk/projeto branches/2.14.0/projeto
cd branches/
svn commit -m "Branch criada"
svn up
Merge do trunk para a branches com uma revisao:
cd branches/2.14.0/
svn merge -c758 ^/trunk
Merge da branches para o trunk com uma revisao:
cd trunk
svn merge -c758 ^/branches/2.14.0
ou -r760:765 para varias revisoes no lugar do -c
Exportar projeto
svn export ^/branches/2.15.0/projeto /home/luis.carlos/2.15.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment