CS552 Course Wiki: Spring 2017 | Main »
Svn instructions |
Tasks |
On this page... (hide)
Initial setup Before going any further, one of the first things you must do, is add the following line to your .cshrc.local: setenv CS552_REPOS file:///p/course/cs552-karu/handin/user/CS552_REPOS/ set path = ($path /u/k/a/karu/courses/cs552/spring2009/handouts/bins) Replace user with your cs login. 1. OverviewFor this course we use a version control system called svn. Details on svn are here. With svn you can track changes to the files as you modify them and arbitrarily revert back to older versions, without having to maintain messy manual backups. The other big advantage of an automatic version control system are that it allows you easily shared project files between project partners. 2. Concepts2.1 svn repositoryThe repository is the place where the master copy of your files are maintained. To modify files you should "checkout" from the repository. When you are satisfied about a small set of changes you have made you should "commit" the changes at which point, the files will be modified in the repository. 2.2 svn work directoryThe work directory is a checkout of the repository and contains any modifications you made 2.3 svn commands
3. CookbookAn svn repository has been created for each one of you in this location: (replace user with your cs login) /p/course/cs552-karu/handin/user/cs552_repos/ The repository has been populated with just the directory structure and you are expected to stick to this structure. This is for information only. You will NEVER need to go to that directory and do anything in that directory. 3.1 Initial checkoutFirst you must go to your home directory, or to some other directory where you want your cs552 related stuff to be in. It is also useful to set the prompt to show your current directory all the time. Which is what the set prompt command does. prompt> cd ~ prompt> set prompt="%n@%m%~>" Now, to checkout the repository issue the following command. prompt> svn co $CS552_REPOS/trunk cs552_work This will create a directory called cs552_work in whichever directory you issue this from. You should see the following directory hierarchy, if you execute ls: README.TXT hw2/ hw3/ hw4/ hw5/ hw6/ project/ 4. Homework problems and projectAs the name suggests you will work on individual homeworks and the project in different directory. For each problem that must be electronically turned in you must create a directory of its own. For example hw2, requires problem 1 and problem 2 to be turned. You must perform the following steps: 4.1 Create the directoryprompt> cd hw2 prompt> mkdir problem1 4.2 Add the directory to svn repositoryprompt> svn add problem1 prompt> svn commit -m "created directory" What is specified with -m is a comment. You should put something descriptive here. 4.3 Do the homework!You will end up creating a few verilog files, lets say adder.v, mux.v. 4.4 Add the files to svnprompt> svn add adder.v mux.v prompt> svn commit -m "added files" 4.5 Spend some time debuggingAt this point you may make a bunch of changes. As and when you discover a small bug and fix it, commit that change. If you did not add any new files, you can just issue commit. Which will copy over the latest files to the repository. prompt> svn commit -m "fixed bug in carry out" You should provide a descriptive piece of text following -m 4.6 Final submit of homeworkTo finally submit the homework, when you are all done, you create a tag. Each homework will have its own tag. To create a tag called "hw2-submit", issue the following command: prompt> svn copy $CS552_REPOS/trunk $CS552_REPOS/tags/hw2-submit -m "submitting homework" You can provide any message following the -m. Important notes:
4.7 If you want to submit a homework multiple times, do the following:prompt> svn commit -m "commited modifications after submitting homework" prompt> svn delete $CS552_REPOS/tags/hw2-submit -m "deleting submission" prompt> svn copy $CS552_REPOS/trunk $CS552_REPOS/tags/hw2-submit -m "submitting again" You may re-submit as many times as you please. 4.8 Checking that what you submitted actually got turned inYou should simply checkout the tag you just created in a temporary directory and see if all the files you intended to submit are there. At the unix prompt issue the following commands: Wherever you see [user] replace with your cs login. prompt> cd /tmp prompt> rm -rf submit-test-dir-[user] prompt> svn checkout $CS552_REPOS/tags/hw2-submit submit-test-dir-[user] prompt> cd submit-test-dir-[user] prompt> ls You should see the files listed. If any files that you intended to submit are missing, go back to your original work directory mywork, issue svn add, svn commit, and the svn delete, svn copy sequence to re-submit. The checkout in a temporary copy to see if everything has been submitted. 4.9 Show what submissions I have madeprompt>svn list $CS552_REPOS/tags 5. Fun things with svn5.1 svn logThis will show you a log of all the changes you have made 5.2 svn diff
5.3 svn cat: Reverting to an older version.Lets saying you have been making several modifications to a file and are at revision 45 for a file. After doing a bunch of debugging, you realized revision 41 is actually the cleanest file and you want to go back to that as the latest copy. i.e create revision 46 which is the same as revision 41. prompt> svn cat -r41 add.v > add.v # It is important to specify the filename twice with the greater than sign in-between. What the svn cat command does is dumps the file to the screen. What we are doing with the "> add.v" construct is redirecting the output to the file add.v prompt> svn commit -m "reverting to version 41" 5.4 svn remove: removing a file or directoryTo remove an entire directory and all the files in it from the repository; you can do: prompt> svn remove foobar prompt> svn commit -m "removed the directory foobar and all files in it" If you want to remove a single file: prompt> svn remove foobar.v prompt> svn commit -m "removed the file foobar.v" If you want to remove multiple files: prompt> svn remove foobar.v file1.v file2.v prompt> svn commit -m "removed the file foobar.v file1.v file2.v" 5.5 svn list: show the submissions or tags I have made:prompt>svn list $CS552_REPOS/tags 5.6 Undoing a remove!I just removed a directory or file, and issued svn commit. I want it back! First find what revision number you are at, lets says you are at revision 20. You can determine this by doing the following: prompt>svn update; svn info You will see something like tihs: Path: . URL: file:///p/course/cs552-karu/handin/foo/CS552_REPOS/trunk Repository Root: file:///p/course/cs552-karu/handin/foo/CS552_REPOS Repository UUID: dff6809d-9a60-4b0f-90cb-be1f33e79980 Revision: 20 Node Kind: directory Schedule: normal Last Changed Author: karu Last Changed Rev: 20 Last Changed Date: 2009-02-10 18:26:39 -0600 (Tue, 10 Feb 2009) Look at the line "Last Changed Rev: " to get the current revision. The file you deleted is then in the previous revision, "19". Then issue the following command: prompt> svn merge -r20:19 $CS552_REPOS/trunk Check if the files you want have been restored; then commit this: prompt> svn commit -m "got back the files" 6. Summary of commands
|
Page last modified on February 18, 2009, visited times |