Você está na página 1de 11

4/12/2017 30REALTIMESVNInterviewQuestionsandAnswersSUBVERSION2017

(HTTP://INTERVIEWQUESTIONSANSWERSPDF.COM
HOME(http://interviewquestionsanswerspdf.com/)SVNInterviewQuestions

(http://interviewquestionsanswerspdf.com/category/svninterviewquestions/)
30REALTIMESVNInterviewQuestionsandAnswersSUBVERSION

30REALTIMESVNINTERVIEWQUESTIONSAND
ANSWERSSUBVERSION

Download This to PDF - Start Download


Convert doc to pdf and pdf to doc Go to
downloadconverternow.com/PDF/Converter

SVNInterviewQuestionsand
Adsby Google

InterviewQuestionsPDF
AnswersSUBVERSION:
DownloadPDFFile

1.WhatisSVN?

Subversionisanopensourcecontrolsystemwhichisusedtotraceallthechanges
madetoyoursourcecode.Itisarepositoryusedtomanagefiles,folders,directories
andthemodificationmadetothesefilesoveraperiodoftime.WhileSVNrepository
providesacompletehistoryofchangesmadetothefilesandcaneasilytrackif
someonehadmadechangesinthefile.

2.ListoutwhatallthingsshouldbestoredinSVNrepository?

SourceCode
MySQLQueries

http://interviewquestionsanswerspdf.com/2016/08/svninterviewquestionsanswerssubversion/ 1/11
4/12/2017 30REALTIMESVNInterviewQuestionsandAnswersSUBVERSION2017

DatabaseUpdates
Projectregardingimportantfiles
ProductDocuments

MinutesofMettingandImpEmail
3.HowtoaddSVNfile?
svnaddfilename.php

SVNInterviewQuestionsandAnswers

4.HowtoaddSVNfolder?
svnaddfoldername

5.HowtogetUpdatesfromSVNRepo

svnupdate

6.HowtodeletefilefromSVNRepo?

svndeletefilename

7.HowtogetSVNInfo?
svninfo

8.HowtogetSVNLogforafile?

svnlogtestFile.php

9.Howtocheckformodifications?

svnstatusvPATH

http://interviewquestionsanswerspdf.com/2016/08/svninterviewquestionsanswerssubversion/ 2/11
4/12/2017 30REALTIMESVNInterviewQuestionsandAnswersSUBVERSION2017

10.DifferencebetweenSVNcommitandSVNupdate?

SVNcommit::Push(upload)thelocalchangestoRepository.

SVNUpdate::Get(download)theRepositorychangesfilestolocalsystem.

11.WhatisuseofRevertinSVN?
Revertyourlocalchanges.

Ithavetwotypes
1)LocalRevert:Itwilldeleteallchangesfromfileswhichyoumadeafterupdates

andbeforecommit.

2)RepoRevert:UploadthechangestopreviousRepo.

12.ListoutwhatisthebestpracticesforSVN?
Workfromyourownlocalworkspace

Commitsmallautonomouschanges
Usecomment

Validatethefilesyouarecommitting,youactuallychanged

TakeUpdatebeforecommittotheRepo.

13.HowtoapplyapatchinSVN?
FirstweneedtoCreatePatchbymakingchangesandgeneratingthe.difffile.Then

this.difffilecanbeappliedtothenewCodebaseusingApplyPatch.

14.whatisthedifferencebetweenGITandSVNrepository?

ThedifferencebetweenSVNandGITis

Gitdoesnotsupportcommitsacrossmultiplebranchesortags.Subversion
allowsthecreationoffoldersatanylocationintherepositorylayout

Gitsareunchangeablewhilesubversionenablescommitterstotreatataga

branchandtocreatemultiplerevisionsunderatagroot

http://interviewquestionsanswerspdf.com/2016/08/svninterviewquestionsanswerssubversion/ 3/11
4/12/2017 30REALTIMESVNInterviewQuestionsandAnswersSUBVERSION2017

Gitislesspreferredforhandlinglargefilesorfrequentlychangingbinaryfiles

whileSVNiscapableofhandlingmultipleprojectsstoredinthesamerepository

15.ListoutwhatallthingsshouldbestoredinSVNrepository?

InSVNrepositoryyoucanstore

SourceCode

Buildscripts

TestdatausedbyQA
DBschema

Projectsettings(WhenwholeteamisusingthesameIDE)

Projectdocumentation(InternalandExternal)

Minutesofmeetings,significantemailsandinfofromtheweb

Expensivelygeneratedartifacts
Andotherdocumentsrelatedtotheproject

16.Mentionwhatisthecommandtoaddafileordir?

ToaddafileordirinSVNthecommandyouwilluse

svnaddfilename

svnadddirname

17.Listoutthecommonsubversioncommands?

Commonsubversioncommandsinclude

Import

Checkout

Commit
Update

Otherthantheseitalsohascommandlikerevert,move,copyandmerge.

18.whatisthedifferencebetweencommitandupdate?
http://interviewquestionsanswerspdf.com/2016/08/svninterviewquestionsanswerssubversion/ 4/11
4/12/2017 30REALTIMESVNInterviewQuestionsandAnswersSUBVERSION2017

Updateisusedtoupdatethelocalworkspacewiththechangesmadebytheteamto
therepository,whilecommitistheprocesstoimplementchangesfromlocalto

repository,insimplewords,uploadafileintorepository.

19.HowyoucanapplyapatchinSVN?

ToapplyapatchinSVN,youarerequiredtoCreatePatchbymakingchangesand

generatingthe.difffile.Thenthis.difffilecanbeimplementedtothenewcodebase

usingApplyPatch.

20.whatisthecommandtocreateanewdirectoryunderversion

control?

Commandtocreateanewdirectoryunderversioncontrolincludes

svnmkdirdirectory

svnmkdirhttp://url/directory

21.Mentionhowyoucanimportyourexistingdirectoryintothenew
repository?

Thecommandyouwillusetoimportyourexistingdirectoryintothenewrepository
youhavetowrite

svnimport/home/mysurface/programming

file:///home/mysurface/repo/programing_repominitialimport

22.whatisthecommandtoseewhatisinsidetherepository?

Commandsvnlistfile:///home/mysurface/repo/programming_repoisusedtosee

whatisinsidetherepository.

23.whatisthecommandusetoviewthedifferencebetweenthelocal

versionandrepositoryversion?

http://interviewquestionsanswerspdf.com/2016/08/svninterviewquestionsanswerssubversion/ 5/11
4/12/2017 30REALTIMESVNInterviewQuestionsandAnswersSUBVERSION2017

Thecommandusestoviewthedifferencebetweenthelocalandrepositoryversionis

svndifffilename

svndiffdirname

24.WhatdoestheresultcodesGandRinsvnindicates?

TheresultcodesGandRinsvnindicates

Gcode:Changesontherepowereautomaticallymergedintotheworkingcopy

Rcode:Thiscodeindicatesthatitemhasbeenreplacedinyourworkingcopy.This
meansthefilewasprogrammedorscheduledfordeletion,andanewfilewiththe

samenamewasscheduledforadditioninitsplace

25.whatisthefunctionofRevertinsubversion?

Revertfunctionwillremoveyourlocalchangesandreloadthelatestversionfrom

therepository.

26.Howyoucanreverttoapreviousversion?

Toretrieveapreviousversion,youhavetouserevertcommand.Butrevert

commandwillsimplyeraselocaledits,whatyouactuallyneedistomerge
command.Forexample,youhaveafile[abc.txt]andthecurrentversionis101,and

youwantversion201.Thenyouwillusethecommandlike

svnmerger101:201abc.txt

svncommitmRevertedtorevision201abc.txt

27.Whatarethecommandthatcanbeusedtomovesomesubsetofcode

andhistoryofthiscodefromoneSVNrepotoanother?

Followingcommandscanbeused

svnadmindump

http://interviewquestionsanswerspdf.com/2016/08/svninterviewquestionsanswerssubversion/ 6/11
4/12/2017 30REALTIMESVNInterviewQuestionsandAnswersSUBVERSION2017

svndumpfilterinclude

svnadminload

svnremove

28.WhatisthebestpracticesforSVN?

BestpracticesforSVNis

UpdateandTestbeforecommit

Workfromyourownlocalworkspace

Commitsmallautonomouschanges

Validatethefilesyouarecommitting,youactuallychanged

Keepintouchwithrepository

Watchforconflicts

Alwaysgroupyourcheckinlogically
Usecomment

29.Whatisbranch,TagandTrunkinSVN?

Trunkisthemainbodyofdevelopment,originatingfromthestartoftheprojecttill

end.

Branchisacopyofcodederivedfromacertainpointinthetrunkthatisusedfor

applyingmajorchangestothecodewhilepreservingtheintegrityofthecodeinthe

trunk.

Trunkisapointintimeonthetrunkorabranchthatyouwishtopreserve.Thisis

likebaseliningthecodeafteramajorrelease.

30.DifferencebetweenUpdateandCommit?

Updateisusedtoupdatethelocalworkspacewiththechangescommitedbythe

teamtotherepositorywhereasCommitistheprocesstopushchangesfromlocalto

repository.

SVNInterviewQuestionsandAnswerspdffreedownload::
http://interviewquestionsanswerspdf.com/2016/08/svninterviewquestionsanswerssubversion/ 7/11
4/12/2017 30REALTIMESVNInterviewQuestionsandAnswersSUBVERSION2017

SVNInterviewQuestionsandAnswerspdffreedownload::

Download This To PDF


Free to Download and Convert. Get It Instantly, Download Now. Go to
fromdoctopdf.com

August20,2016 iqapdf(http://interviewquestionsanswerspdf.com/author/iqapdf/) SVNInterviewQuestions

(http://interviewquestionsanswerspdf.com/category/svninterviewquestions/) LeaveaComment

(http://interviewquestionsanswerspdf.com/2016/08/svninterviewquestionsanswerssubversion/#respond)

50REALTIMEMSBIMultipleChoiceQuestionsandAnswers

(http://interviewquestionsanswerspdf.com/2016/08/msbimultiplechoice

questionsanswers/)

BESTAUSTRALIAVisaProcess

(http://interviewquestionsanswerspdf.com/2016/08/bestaustraliavisaprocess/)

ADDCOMMENT

Requiredfieldsaremarked*.Youremailaddresswillnotbepublished.

Comment

Name*

EmailAddress*

Website
http://interviewquestionsanswerspdf.com/2016/08/svninterviewquestionsanswerssubversion/ 8/11
4/12/2017 30REALTIMESVNInterviewQuestionsandAnswersSUBVERSION2017

POSTAQUESTION

InterviewQuestionsAnswersP...
1,435likes

LikePage Share

Bethefirstofyourfriendstolikethis

InterviewQuestionsandAnswerspdffreedownloadforfreshersexperiencedMCQsRealtimecertificationbasicaskedobjective

programmingonIT&NONITPlacementPapersFAQs

http://interviewquestionsanswerspdf.com/2016/08/svninterviewquestionsanswerssubversion/ 9/11
4/12/2017 30REALTIMESVNInterviewQuestionsandAnswersSUBVERSION2017

http://interviewquestionsanswerspdf.com/2016/08/svninterviewquestionsanswerssubversion/ 10/11
4/12/2017 30REALTIMESVNInterviewQuestionsandAnswersSUBVERSION2017

http://interviewquestionsanswerspdf.com/2016/08/svninterviewquestionsanswerssubversion/ 11/11

Você também pode gostar