Contents |
Basic SVN commands
Checking out projects
You need to know the urls of the components you want to checkout. Then you would do either of the following:svn checkout url
svn co urlThe above will check it all out into a default folder name. For instance:
svn checkout http://svn.greenstone.org/greenstone3/trunkwill check out Greenstone 3 into a folder called trunk in the current directory.
You can alternatively provide an optional folder name at the end of the command, to check the contents out into:
svn checkout http://svn.greenstone.org/greenstone3/trunk greenstone3This will check out Greenstone 3 into a folder called greenstone3.
svn update and revert
An svn update merges the repository's changes with the local changed code, or shows places where conflicts have arisen (conflicts are shown with a C next to the files you tried to update). If someone else had committed changes to the repository and if these did not conflict with the changes in your own version, the svn update would show up a "G", not a "C". To deal with conflicts (C), see a later section.- To update the local file(s) with just the changes made in the repository, do an "svn update":
> svn update...
- To overwrite local file(s) with the one in the repository, do an "svn revert"--you would do this if you want to go back to the version of the file in the repository (you will lose all changes you had made since the last commit):
> svn revertYou can update an entire directory (and subdirectories) by moving into that directory and typing:...
> svn update
svn diff
Note that svn diff does not connect to the repository! It compares your file against the file you had downloaded, not the file as it exists at the moment in the svn repository.To find out what changes you've made to a greenstone source file:
> cd> svn diff e.g. > svn diff util.pm
Committing files
Perform an svn diff it to look over the changes made since you last updated the file. Then svn update the file, perform the svn diff on the updated file, then svn commit it with a message:> svn diffWill show you the changes you've made since you last did an svn update on the file.
> svn updateIt will merge changes made to the file in the repository with the changes you have on your machine. Your own changes take precedence and these are preserved. However, conflicts may arise if any of the lines that have been modified on your machine have been changed in the repository since you last checked it out/svn-updated it.
> svn diffThis diff now shows up the differences between your current file and what's there now in the repository. Check that only the new code you have added is the sum total of the differences.
> svn commit - m "message"Where the message string is one that explains what changes have been made, why you are committing the file or what purpose a new file serves.
To perform these svn operations on more more than 1 file in one go, separate them by spaces:
> svn diff> svn update > svn diff > svn commit - m "message"
Adding a new file to the repository
How to add a file (not for creating new folders in the svn repository):svn addYou can add more than one file at a time:svn commit -m "This new file will do something useful"
svn addsvn commit -m "These new files work together to add some extra functionality"
Deleting a file from the repository
To remove a file from the repository, you need to give it the url of the file in the repository:svn remove -m "I deleted this file for a reason" http://svn.greenstone.org/....../thefile.extAliases for svn remove are "svn delete" and "svn rm". If more than one file needs to be removed, you need to perfom the svn remove operation for each file one after another. (You can't remove several files from the repository at the same time in one line.)
Helpful svn commands
> svn info
> svn switch
> svn statusIf you do an "svn status" in a folder, it recursively lists all the Modified (M), Deleted (D) and Added (A) files. It will also show up files that are in conflict (C) and those about which svn does not know (?). To see what modifications were made to individual files marked with an M, you'd do an "svn diff":
> svn diff
> svn help > svn help [item] eg. svn help statusThe last gives instructions on how to use an svn command. For example:
> svn help commitWill tell you that to commit changes, you do "svn commit [path] --message "
Conflicts and resolving them
- If, when doing an "svn status" of a folder you find any files marked with a C, then it means such files are in conflict with their corresponding versions in the svn repository.
- Doing an "svn update" may indicate files are in conflict as well. If you performed an "svn update" on some files (or on a folder) and one or more came up with the status C then you have a conflict. It means that changes to the same file on the same lines had been committed to the svn repository as what you have been working on. The update could not successfully merge the corresponding lines as it didn't know which lines to keep and which to overwrite: the lines are in conflict.
To resolve conflicts in a file marked with a C
- Open up the file that's in conflict in an editor.
- Search for all occurrences of >>> or ===. Each occurrence marks a conflicted section and needs to be resolved.
- Deal with marked sections as appropriate: decide which parts you want to keep, which should be removed or how to combine (the best of) both.
- Once you've finished editing out the conflicts in the file, you have to set the file's status to resolved for it to be up to date (and updateable with svn):
svn resolvedIf you now try svn update on the file, it should no longer be marked as being in conflict.
Special SVN operations
svn log and annotate
- To find out the list of changes made to code in a file:
>svn annotateThe above will list the code changes with NUMBERS in front of each line. For example,
svn annotate GathererProg.java | less
- To find the message added into the log for making a change
>svn logThat will give all the messages for all the code changes. For example,
svn log GathererProg.java | less
- Or, if you know the specific line of change for which you want to understand the reasoning or view the log message:
>svn log -rNUMBERFor example:
svn log -r10242 GathererProg.java
- If you want to find all the files in a particular commit and the log message for them:
svn -v log http://svn.greenstone.org -r18201Example output:
------------------------------------------------------------------------ r18201 | ak19 | 2008-12-15 14:10:06 +1300 (Mon, 15 Dec 2008) | 1 line Changed paths: M /gsdl/trunk/perllib/unicode.pm When associated files are renamed with the URLencoded versions of their original filenames, the spaces are no longer URL encoded, as this conflicted with mp3, wmv and possibly other media file formats being opened in external or browser-embedded apps ------------------------------------------------------------------------
Creating a new project in the svn repository
You'd do this if you want to put your program, stored only on your machine at the moment, onto the svn repository.The program folder on your harddrive, called "my_program" for instance, may contain:
- all the directories (e.g. src, lib, bin) and
- loose files (e.g. build.xml and *.bat, *.sh scripts).
cd my_program svn import -m "my message" . http://svn.greenstone.org/other-projects/trunk/my_programThat will put your folder and its contents into the svn repository inside a similarly named folder. Now, we need to check out our own svn-managed copy: Move up out of the local my_program directory and make a back-up copy of original program folder, just in case:
3. cd .. 4. mv my_program my_program.bakFinally, checkout the a copy of the program from the svn repository, that will be stored on your machine in my_program:
5. svn co http://svn.greenstone.org/other-projects/trunk/my_programYour program folder is just as before, except that it's now managed with svn.
Copying an older revision of a file or folder back into the current svn revision
If you've accidentally deleted an svn repository folder, such as "my_program", and want to bring it back (the older version is, after all, stored in the svn repository):svn copy -rThe revision version number you want to copy should be one where the folder (or file) you accidentally wiped out still exists. For example:from-svn-url to-svn-url -m "message"
svn copy -r 15315 http://svn.greenstone.org/other-projects/trunk/my_program http://svn.greenstone.org/other-projects/trunk/my_program -m "Accidental delete restored"The above copies the folder of revision version 15315 at http://svn.greenstone.org/other-projects/trunk/my_program into the same url at the current revision/head.
Checking out an older revision from SVN
a. In general, you would do:/my/local/path/>svn update -r {2008-04-26}If there were conflicts, delete everyting and checkout the older version:
/my/local/path/>svn co -r {2007-10-01} http://svn.greenstone.org/greenstone3/trunk .Comparing versions: comparing current folder contents with contents of an older revision:
/my/local/path>svn diff -r {2008-04-26} .b. Checking out an older revision of Greenstone 3 is a special situation. For this you would do:
ant-Dbranch.revision=
eg. ant prepare -Dbranch.revision=15190This will do an ant prepare/ant install/ant command using the revision number specified. Usually, you'd want to do an "ant prepare" with the revision flag. (And thereafter compile your greenstone 3 up again with a normal "ant install".)
Changing an svn property
You may want to do this if a regular text file in the svn repository is marked as a binary file and therefore won't let you do an "svn diff" to compare the text contents.An example situation:
/my/full/path>svn diff file.extOutput:
Index: file.extTo view a listing of the svn properties on this file:
___________________________________________________________________
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/my/full/path>svn proplist file.extOutput:
Properties on 'file.ext':To edit the svn properties of this file:
svn:executable
svn:mime-type
/my/full/path>svn propedit svn:mime-type file.extOutput:
svn: None of the environment variables SVN_EDITOR, VISUAL or EDITOR is set, and no 'editor-cmd' run-time configuration option was found
/my/full/path>export EDITOR=emacsThe above sets an editor to edit the svn properties with. In the example, it is the editor "emacs". On Windows you might set this to Notepad for instance.
Now you can choose to edit these properties:
/my/full/path>svn propedit svn:mime-type file.extIf you only opened it up in an editor to have a good look at the contents but didn't make (or save) any changes, then when you close the editor, the output will likely be:
No changes to property 'svn:mime-type' on 'file.ext'The troublesome property is the mime-type, which we delete as follows:
/my/full/path>svn propdel svn:mime-type file.extOutput:
property 'svn:mime-type' deleted from 'file.ext'.Now, if we do an "svn diff" on the file (which we couldn't do before because the file's MIME type was set to binary):
/my/full/path>svn diff file.extthe output will be:
Property changes on: file.ext
___________________________________________________________________
Name: svn:mime-type
- application/octet-stream
/my/full/path>svn commit -m "Property change from binary file into no longer having the mime-type property set (which didn't allow me to do a diff on the file)." file.ext
Sending file.ext Committed revision 16545.Thanks to :
http://wiki.greenstone.org/wiki/index.php/Useful_SVN_Commands
SVN online book source
http://svnbook.red-bean.com/en/1.5/svn-book.html#svn.intro.whatis
No comments:
Post a Comment