Difference between revisions of "Feb 16, 2012"
Sdealmeida (talk | contribs) (→Meeting Summary) |
Sdealmeida (talk | contribs) (→Meeting Summary) |
||
Line 9: | Line 9: | ||
'''WINDOWS''' | '''WINDOWS''' | ||
Download: http://tortoisesvn.net/downloads.html | Download: http://tortoisesvn.net/downloads.html | ||
+ | |||
+ | |||
+ | <hr /> | ||
'''SVN repo''' | '''SVN repo''' | ||
Line 20: | Line 23: | ||
* "svn update" - a svn update will update any "old" files that is on your working directory. | * "svn update" - a svn update will update any "old" files that is on your working directory. | ||
− | ''SVN Setup'' | + | '''SVN Setup''' |
- Create a working directory (mkdir ~/home/username/Documents/seneca-app/) | - Create a working directory (mkdir ~/home/username/Documents/seneca-app/) | ||
- Do a checkout (svn checkout svn://littlesvr.ca/prog/seneca-app) | - Do a checkout (svn checkout svn://littlesvr.ca/prog/seneca-app) | ||
- Update your work (if needed) | - Update your work (if needed) | ||
- Done! | - Done! |
Revision as of 18:16, 16 February 2012
Meeting Summary
SVN Installation
UBUNTU
sudo apt-get install subversion
WINDOWS
Download: http://tortoisesvn.net/downloads.html
SVN repo
svn://littlesvr.ca/prog/seneca-app
SVN Commands
* "svn checkout" - a svn checkout will download all files from the server to your working directory. Usage: "svn checkout svn://littlesvr.ca/prog/seneca-app" * "svn add" - * "svn status" - a svn status will show all files that will be committed. Usage: "svn status" * "svn commit" - a svn commit will "push" all files that you added (by running the svn add command) to the repo. * "svn update" - a svn update will update any "old" files that is on your working directory.
SVN Setup
- Create a working directory (mkdir ~/home/username/Documents/seneca-app/) - Do a checkout (svn checkout svn://littlesvr.ca/prog/seneca-app) - Update your work (if needed) - Done!