- Barajar
ActivarDesactivar
- Alphabetizar
ActivarDesactivar
- Frente Primero
ActivarDesactivar
- Ambos lados
ActivarDesactivar
- Leer
ActivarDesactivar
Leyendo...
Cómo estudiar sus tarjetas
Teclas de Derecha/Izquierda: Navegar entre tarjetas.tecla derechatecla izquierda
Teclas Arriba/Abajo: Colvea la carta entre frente y dorso.tecla abajotecla arriba
Tecla H: Muestra pista (3er lado).tecla h
Tecla N: Lea el texto en voz.tecla n
Boton play
Boton play
9 Cartas en este set
- Frente
- Atrás
What is SVN?
|
SVN or Subversion is an open source code control system. It is used to trace all the changes made to your source code or files. It is a repository used to manage files, folders, directories and the modification made to these files over a period of time. SVN repository provides a complete history of changes made to the files and can easily track if someone had made changes in the file.
|
What is the difference between GIT and SVN repository?
|
The difference between SVN and GIT is
Git does not support “commits” across multiple branches or tags. Subversion allows the creation of folders at any location in the repository layout Gits are unchangeable while subversion enables committers to treat a tag a branch and to create multiple revisions under a tag root Git is less preferred for handling large files or frequently changing binary files while SVN is capable of handling multiple projects stored in the same repository |
List out what all things should be stored in the SVN repository?
|
In SVN repository you can store
Source Code Build scripts Test data used by QA DB schema Project settings (When the whole team is using the same IDE) Project documentation (Internal and External) Minutes of meetings, significant e-mails, and info from the web Expensively generated artifacts And other documents related to the project |
What is the command to add a file or dir?
|
To add a file or dir in SVN the command you will use
svn add filename svn add dirname |
List out the common subversion commands?
|
Common subversion commands include
Import Checkout Commit Update Other than these it also has commands like revert, move, copy and merge. |
What is the difference between commit and update?
|
Update is used to update the local workspace with the changes made by the team to the repository, while commit is the process to implement changes from local to repository, in simple words, upload a file into the repository.
|
Explain how you can apply a patch in SVN?
|
To apply a patch in SVN, you are required to “Create Patch” by making changes and generating the .diff file. Then this .diff file can be implemented to the new code base using “Apply Patch”.
|
What is the command to create a new directory under version control?
|
Command to create a new directory under version control includes
svn mkdir directory svn mkdir http://url/directory |
Mention what is the function of Revert in subversion?
|
“Revert” function will remove your local changes and reload the latest version from the repository.
|