svn
-
ignore files with svnComputer/linux 2013. 1. 15. 12:59
To ignore files in SVN, $ svn st ? beamcontrol.aux ? beamcontrol.bbl ? beamcontrol.log ? beamcontrol.dvi ? beamcontrol.blg ? beamcontrolNotes.bib M beamcontrol.bib M beamcontrol.tex $ svn propedit svn:ignore .In an editor (in my case, emacs ) , type*.aux*.log*.pdf*.dvisave them and exit $ svn propget svn:ignore . *.aux *.log *.dvi *.pdf *.blg $ svn status --no-ignore M . I svn-prop.tmp~ I beamco..
-
SVN commandsComputer/linux 2009. 11. 1. 23:20
Check information on which revision you have svn infoCheck information on 000 revision svn info -r 000 Update to a specific revision (000) svn update (up) -r 000 Compare two revisions (A and B) or even more svn diff -r A:B Compare one file of current working copy with old revision(000) svn diff -r 000 filenameUndo a commit svn merge -c 000 . svn commit