Changes between Version 3 and Version 4 of HowtoSVN
- Timestamp:
- Sep 28, 2011, 9:58:16 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowtoSVN
v3 v4 10 10 * Obtain a list of the possible projects to download from a SVN repository: 11 11 {{{ 12 svn list --verbose svn:// elivecd.org12 svn list --verbose svn://dev.elivecd.org 13 13 }}} 14 * Downloadthe sources of the subdir ''translations'':14 * '''Download''' the sources of the subdir ''translations'': 15 15 {{{ 16 svn co svn:// elivecd.org/translations translations_svn16 svn co svn://dev.elivecd.org/translations translations_svn 17 17 }}} 18 18 * ,,We have used '''translations''' for this example,, … … 20 20 * ,, ''' svn co ''' is the same as ''' svn checkout ''' ,, 21 21 22 * Updatea previous downloaded SVN copy:22 * '''Update''' a previous downloaded SVN copy: 23 23 {{{ 24 24 svn update 25 25 }}} 26 * '''IMPORTANT''': If you are a developer (that you change the source code and will send/commit it later), '''always''' update your directory/copy BEFORE to start working on it, also, it is recommended to not send your changes after hours or days of work, the reason of this is because if somebody else is working at the same time on the same sources, you or him will have a conflict with the sources when trying to send them. In the next section is explained an easy trick to resolve this easly. 26 27 27 28 [[BR]] 28 29 == For developers == 29 30 30 * See the differences between your copy and the original repository (if you have made any changes in the code)31 * See the '''differences''' between your downloaded SVN and the original sources in the repository (if you have made any modifications) 31 32 {{{ 32 33 svn diff 33 34 }}} 34 * Send modifications of the files ''(commit)''35 * '''Send''' modifications of the files ''(also called '''commit''')'' 35 36 {{{ 36 37 svn commit -m 'Fixed the bug of double interfaces launched' 37 svn commit evidence-gui* -m ' Commiting the evidence-guifiles'38 svn commit evidence-gui* -m 'Sending all the evidence-gui prefixed files' 38 39 }}} 39 * ,,You need to add a comment with the '''-m''' option, it's important that you provide a good description in order to better understand the steps of the code, and browse better old versions and old modifications,,40 * You need to add a comment with the '''-m''' option, it's important that you provide a good description in order to know better ''what is about'' your modifications, and so to browse more easly changes in the repository when you are searching for specific things 40 41 41 * Upload (add files/directories) it in the next commit42 * '''Add''' files/directories that will be uploaded in your next commit. 42 43 {{{ 43 44 svn add file … … 45 46 svn add images/*.png 46 47 }}} 47 * '''Important''': When you do ''svn add directory'', it will be included ALL the files and subdirectories of this directory, this means that you will add a lot of files that are not needed, like '''.edj''', elf or binary files, compiled ones, etc... '''please''' clean up the directories that you are adding to the SVN before to import them, we dont want to have '''not-needed''' files in the SVN repository that will takes space on the server, making a svn repository slow, and that conflicts with our own builds. '''Thanks''' 48 * Delete files 48 * '''IMPORTANT''': When you do ''svn add directory'', it will be included ALL the files and subdirectories of this directory, this means that you will add a lot of files that are not needed, like '''.edj''', elf or binary/compiled files, etc... '''PLEASE''' clean up the directories that you are adding to the SVN before to import them with this command, we dont want to have '''not-needed''' files in the SVN repository that will takes space on the server and our copies, making a svn repository slow, and that will also conflict with our own builds (like files that are compilable). '''Thanks''' 49 * Note: If you copy a file to your directory and don't run this command, it will be not uploaded to the repository, this is very useful like if you compile a .edj file and you don't need to send it. 50 51 * '''Delete''' files 49 52 {{{ 50 53 svn delete file … … 53 56 }}} 54 57 55 * Movefiles58 * '''Move''' files 56 59 {{{ 57 60 svn mkdir data … … 59 62 }}} 60 63 61 * Revert modifications (''Revert modifications (that are '''not commited''' yet), don't need ''internet'' connection, but it won't recover a deleted directory'')64 * '''Revert''' modifications (''Revert modifications (that are '''not commited''' yet), you can also use ''delete'' if you do it before to commit 62 65 {{{ 63 66 svn revert file … … 70 73 }}} 71 74 72 * Fix your changes with another persons changes ( ^When you have worked in this file, another person has worked also, and there are differences between the new changes, you need to fix your code with the new commit of this person^)75 * Fix your changes with another persons changes ( ,,When you have worked in this file, another person has worked also, and there are differences between the new changes, you need to fix your code with the new commit of this person,, ) 73 76 {{{ 74 77 ---> This section need to be edited, i have never tried these options <--- … … 77 80 svn help resolved 78 81 }}} 82 83 * '''TIP''' about fixing changes (conflicts) between different codes: 84 If you have a conflict when trying to send your modifications, because somebody else has also send modifications in the file that are you working (and so, you have started to work in a version of the sources that is previous to his changes, in other words, you need to mix your changes with his changes), an easy way to do this is to; move your conflicting directory to elsewhere, like ''directory.mine'', run ''svn update'' in order to get a new copy of that directory updated that include the changes that conflicts with yours, now run the tool ''meld'' with your modifications and the new directory (on this order), then you have in the left your changes that needs to be merged in the right, with this tool you can do it very easly and fast (try to press the keys ''shift, control, alt'' before to merge, to see more options). When you have finished to include your changes in the new directory, exit the application and commit the new directory like it was your original one, go to http://dev.elivecd.org/timeline and if your changes looks correct, remove the old directory. 79 85 80 86 These are the definitions of the ''flags'' that you see when you download or update a SVN copy: