Git with Dropbox
Cisco's new urbanism
Portable development links
Wish I had this 10 years ago
Associate filetypes to VIM
« Git with Dropbox
» Quick Ref: Linux Mint 11 #1
#make a working dir mkdir sandbox cd sandbox #checkout svn co svn://svn-repo-machine/repo/path myproject --username myusernameatsvnserver #go to work on items cd myproject #pull latest from server svn up #queue a file for addition svn add newfile.c #queue for deletion svn delete anoldfilewedontneed.c #get the info on what is different in your local vs server svn status #list commit comments on a file svn log AFILESOMEONECHANGED.c #commit one file. * will commit all that changed. svn ci -m "Edited this file for ..." filethatgotchanged.c
Now, configure vim as the svn diff tool.