Additions:
Additions:
Additions:
Sub Version Control
Deletions:
Additions:
Deletions:
subversion (svn)
Additions:
basic
advanced
optional
Deletions:
add file
add a new file to system (NOTE nothing happens until you commit (ci)
diff
$ svn diff -r 3:4 fsse-info
Index: fsse-info/y.y
fsse-info/y.y (revision 0)
fsse-info/y.y (revision 4)
+ x.x
+ y.y
update
just gets the latest changes to all the files
$ svn checkout https://fsse-info.googlecode.com/svn/trunk/ fsse-info
Additions:
subversion (svn)
SubVersion Version Control
$ svn add my.new.file
Deletions:
subversion
subversion version control
$ svn add fsse-info/y.y
commit
$ svn ci fsse-info
Adding fsse-info/y.y
Transmitting file data .
Committed revision 4.
Additions:
Deletions:
checkout
just gets all the files
Additions:
subversion version control
SubVersionExport
SubVersionKeywords
just gets all the files
update
just gets the latest changes to all the files
add a new file to system (NOTE nothing happens until you commit (ci)
Deletions:
version control
(NOTE nothing happens until you commit (ci)
Additions:
Deletions:
subversion & proxy servers
$ vi .subversion
# If you go through a proxy for all but a few sites, you can
# list those exceptions under 'http-proxy-exceptions'. This only
# overrides defaults, not explicitly matched server names.
#
# 'ssl-authority-files' is a semicolon-delimited list of files,
# each pointing to a PEM-encoded Certificate Authority (CA)
# SSL certificate. See details above for overriding security
# due to SSL.
[global]
http-proxy-exceptions = *.exception.com
http-proxy-host = myproxy.co.uk
http-proxy-port = 8080
Additions:
subversion
checkout
$ svn checkout https://fsse-info.googlecode.com/svn/trunk/ fsse-info
add file
(NOTE nothing happens until you commit (ci)
commit
$ svn ci fsse-info
Adding fsse-info/y.y
Transmitting file data .
Committed revision 4.
diff
$ svn diff -r 3:4 fsse-info
Index: fsse-info/y.y
fsse-info/y.y (revision 0)
fsse-info/y.y (revision 4)
+ x.x
+ y.y
subversion & proxy servers
### If you go through a proxy for all but a few sites, you can
### list those exceptions under 'http-proxy-exceptions'. This only
### overrides defaults, not explicitly matched server names.
###
### 'ssl-authority-files' is a semicolon-delimited list of files,
### each pointing to a PEM-encoded Certificate Authority (CA)
### SSL certificate. See details above for overriding security
### due to SSL.
[global]
http-proxy-exceptions = *.exception.com
http-proxy-host = myproxy.co.uk
http-proxy-port = 8080
REFERRERS
HomePage