SlideShare a Scribd company logo
Version Control with
Subversion

PLUG Linux Users Group
Senthil_OR@Dell.com
http://svnbook.red-bean.com/

1
Subversion
In the world of open-source software, the Concurrent Versions
System (CVS) was the tool of choice for version control for many
years.
Subversion is similar to CVS, but it avoids most of CVS
noticeable flaws.
The most common use for Subversion is to track changes to
source code. But Subversion can be used to manage changes to
any sort of information—images, music, databases,
documentation, and so on. To Subversion, all data is just data.

http://svnbook.red-bean.com/

2
What is Subversion?
Subversion is a free/open-source version
control system. Subversion manages files
and directories, and the changes made to
them, over time. This allows you to recover
older versions of your data, or examine the
history of how your data changed.
Fosters Collaboration.
Mistakes can be undone.
Is NOT a Software Configuration
Management system. Version control of any
data, perhaps your telephone bills. ?
http://svnbook.red-bean.com/

3
Subversion provides
Directory versioning.
True version history.
Atomic commits
Versioned metadata.
Choice of Network Layers.
Consistent Data Handling.
Efficient Branching and Tagging
Hackablity

http://svnbook.red-bean.com/

4
Fundamental Concepts
The kind of a file server.
Repository
Repository is
What makes it special is that it remembers every change ever
written to it: every change to every file, and even changes to the
directory tree itself, such as the addition, deletion, and
rearrangement of files and directories.
When a client reads data from the repository, it normally sees
only the latest version of the filesystem tree. But the client also
has the ability to view previous states of the filesystem. For
example, a client can ask historical questions like, “What did this
directory contain last Wednesday?”

http://svnbook.red-bean.com/

5
Fundamental Concepts:
Versioning Models
The problem of file sharing:
Problem to Avoid!

http://svnbook.red-bean.com/

6
Fundamental Concepts: Versioning Models:

The Lock-Modify-Unlock Solution
In this Model, Repository
allows only one person to
change at a time.
Locking may cause
Administrative Problems
Locking may cause
unnecessary serialization.
Locking may create a false
sense of security.

http://svnbook.red-bean.com/

7
Fundamental Concepts: Versioning Models:

The Copy-Modify-Merge Solution
In this model, each user's client contacts the project
repository and creates a personal working copy—a
local reflection of the repository's files and
directories.
Users then work simultaneously and independently,
modifying their private copies. Finally, the private
copies are merged together into a new, final version.
The version control system often assists with the
merging, but ultimately a human being is
responsible for making it happen correctly.

http://svnbook.red-bean.com/

8
Fundamental Concepts: Versioning Models:

The Copy-Modify-Merge Solution
Figure 1:

Figure 2:

http://svnbook.red-bean.com/

9
Fundamental Concepts: Versioning Models:

The Copy-Modify-Merge Solution
What if changes do overlap? This situation is called a conflict,
and it's usually not much of a problem
When Harry asks his client to merge the latest repository
changes into his working copy, his copy of file A is somehow
flagged as being in a state of conflict: he'll be able to see both
sets of conflicting changes, and manually choose between them.
Note that software can't automatically resolve conflicts; only
humans are capable of understanding and making the necessary
intelligent choices. Once Harry has manually resolved the
overlapping changes—perhaps after a discussion with Sally—he
can safely save the merged file back to the repository.

http://svnbook.red-bean.com/

10
Fundamental Concepts: Versioning Models:

The Copy-Modify-Merge Solution
The copy-modify-merge model may sound a bit chaotic, but in
practice, it runs extremely smoothly.
Users can work in parallel, never waiting for one another
When they work on the same files, it turns out that most of their
concurrent changes don't overlap at all; conflicts are infrequent.
And the amount of time it takes to resolve conflicts is usually far
less than the time lost by a locking system.
In the end, it all comes down to one critical factor: user
communication. When users communicate poorly, both syntactic
and semantic conflicts increase. No system can force users to
communicate perfectly, and no system can detect semantic
conflicts

http://svnbook.red-bean.com/

11
Fundamental Concepts:

Subversion in Action.
Subversion Repository URLs.
svn checkout http://svn.example.com:9834/repos
svn checkout file:///path/to/repos

Working Copies.
.svn directory in the working copy contains administrative files.
To get a working copy, you checkout from the repository:
$ svn checkout http://svn.example.com/repos/calc
A calc/Makefile
A calc/integer.c
A calc/button.c
Checked out revision 56.
$ ls -A calc
Makefile integer.c button.c .svn/

http://svnbook.red-bean.com/

12
Fundamental Concepts:

Subversion in Action
The act of publishing your changes is more
commonly known as committing (or checking
in) changes to the repository.
$svn commit filename –m “log”
#collaborator will do:
#svn update
$svn commit operation publishes changes to
the any number of files and directories as a
single atomic transaction.

http://svnbook.red-bean.com/

13
Fundamental Concepts:

Subversion in Action
Repository Structure.
Single Global Revision.
Unlike most version
control systems,
Subversion's revision
numbers apply to entire
trees, not individual
files

http://svnbook.red-bean.com/

The Repository

14
Fundamental Concepts:

Subversion in Action
Inside .svn directory keeps track as files
working revision and timestamp of update.
Unchanged, and Current.
Locally Changed, and Current.
Unchanged and Out of date
Locally Changed and Out of date.

http://svnbook.red-bean.com/

15
Basic Usage
Getting data into Repository – svn import
Recommended Repository layout.
/trunk
/branches
/tags

Initial checkout: svn checkout repopath

http://svnbook.red-bean.com/

16
Basic Work Cycle
Update your woking copy.
svn update

Make changes.
svn add
svn delete
svn copy
svn move

Examine your changes
svn status
svn diff
http://svnbook.red-bean.com/

17
Basic Work Cycle
Possibly undo some changes.
svn revert

Resolve Conflicts ( Merge others changes)
svn update
svn resolved

Commit your changes.
svn commit

http://svnbook.red-bean.com/

18
Examining History

svn log
svn diff
svn cat
svn list
svn cleanup

http://svnbook.red-bean.com/

19
Revision Specifiers
HEAD
The latest (or “youngest”) revision in the repository.
BASE
The revision number of an item in a working copy. If the item has
been locally modified, the “BASE version” refers to the way the
item appears without those local modifications
COMMITTED
The most recent revision prior to, or equal to, BASE, in which an
item changed.
PREV
The revision immediately before the last revision in which an item
changed. Technically, this boils down to COMMITTED-1.
Revision Dates

http://svnbook.red-bean.com/

20
Properties
In addition to versioning your directories and files,
Subversion provides interfaces for adding,
modifying, and removing versioned metadata on
each of your versioned directories and files. We
refer to this metadata as properties.
Custom revision properties are also frequently used.
One common such use is a property whose value
contains an issue tracker ID with which the revision
is associated, perhaps because the change made in
that revision fixes a bug filed in the tracker issue
with that ID.

http://svnbook.red-bean.com/

21
Property setting
svn propset license -F /path/to/LICENSE
calc/button.c property 'license' set on
'calc/button.c'
svn:eol-style
svn:executable
svn:keywords
svn:mime-type

http://svnbook.red-bean.com/

22
Keyword substitution
Subversion has the ability to substitute
keywords—pieces of useful, dynamic
information about a versioned file—into the
contents of the file itself
Date, Revision, Author, HeadURL, Id
Set the svn:keyword property of any of the
above
Use the $Date$, $Author$ notation in the
versioned file. The values will get
automatically substituted.
http://svnbook.red-bean.com/

23
Locking
Locking concept supported by svn.

http://svnbook.red-bean.com/

24
Branching and Merging
Branches are svn copy
operation on the
Repository.

Branches of Development

http://svnbook.red-bean.com/

25
Branching and Merging
After Branching
Start point

http://svnbook.red-bean.com/

26
Best practises of merging
Tracking Changes Manually.
Previewing merges.
Noticing and ignoring ancestry
Merges and Moves
Creating a Tag, same as Branch

http://svnbook.red-bean.com/

27
SVN Server configuration
Svnserve Server
Svnserve over ssh
The Apache HTTP server

http://svnbook.red-bean.com/

28
Comparision of the Repositories

http://svnbook.red-bean.com/

29
That’s all Folks
Lundblad is a leading
contributor to the
Subversion open source
code project, which has
produced a widely
implemented code
management system. He
was among five leaders of
open source code
recognized in August at the
O'Reilly Open Source
Conference. Unlike the
others, Lundblad is blind.
Amazing!
http://svnbook.red-bean.com/

30

More Related Content

ODP
Nguyễn Vũ Hưng: Subversion best practices
PPT
Subversion in 2010 and Beyond
ODP
Subversion User Guide
PPTX
02.28.13 WANDisco SVN Training: Getting Info Out of SVN
PPTX
Getting Started With Subversion
ODP
Svn Basic Tutorial
PPT
Subversion workshop
PDF
Introduction to Subversion
Nguyễn Vũ Hưng: Subversion best practices
Subversion in 2010 and Beyond
Subversion User Guide
02.28.13 WANDisco SVN Training: Getting Info Out of SVN
Getting Started With Subversion
Svn Basic Tutorial
Subversion workshop
Introduction to Subversion

What's hot (19)

PDF
Version Control with SVN
PPT
Introduction to Version Control and Configuration Management
PDF
A brief introduction to version control systems
PDF
Subversion Best Practices
PPT
SVN Tool Information : Best Practices
PPT
Part 4 - Managing your svn repository using jas forge
PPT
SVN Usage & Best Practices
PPT
Subversion client
KEY
SVN Best Practices
PDF
IRJET-Evolution of Version Control Systems and a Study on Tortoisesvn
PPTX
SVN Best Practices
PPTX
Version control system
PPT
Subversion
PPTX
Major ppt
PDF
Version control and GIT Primer
PPTX
Version control, issue tracking and communication
PPTX
SVN Tutorial
PPT
ClearCase Basics
PPTX
Version Control with SVN
Introduction to Version Control and Configuration Management
A brief introduction to version control systems
Subversion Best Practices
SVN Tool Information : Best Practices
Part 4 - Managing your svn repository using jas forge
SVN Usage & Best Practices
Subversion client
SVN Best Practices
IRJET-Evolution of Version Control Systems and a Study on Tortoisesvn
SVN Best Practices
Version control system
Subversion
Major ppt
Version control and GIT Primer
Version control, issue tracking and communication
SVN Tutorial
ClearCase Basics
Ad

Similar to Version control with Subversion (20)

PDF
Digital Fabrication Studio 0.3 Information
PDF
Digital Fabrication Studio v.0.2: Information
PDF
Digital Fabrication Studio.02 _Information @ Aalto Media Factory
PPT
Subversion on .Unix
PPT
Subversion on .Unix
ODP
Burlington, VT PHP Users Group Subversion Presentation
PPT
Subversion (SVN)
PPT
FlashInTO SVN Presentation
PDF
How to use CVS applied to SOLab
ODP
Practical SVN for PHP Developers
PPTX
Version Control Training - First Lego League
PPTX
Subversion
PPTX
Subversion
PPT
Subversion
PPTX
Subversion
PPTX
Mercurial presentation
PPT
PPTX
SVN Information
PDF
file+not+too+large
ODP
Introduction to Version Control
Digital Fabrication Studio 0.3 Information
Digital Fabrication Studio v.0.2: Information
Digital Fabrication Studio.02 _Information @ Aalto Media Factory
Subversion on .Unix
Subversion on .Unix
Burlington, VT PHP Users Group Subversion Presentation
Subversion (SVN)
FlashInTO SVN Presentation
How to use CVS applied to SOLab
Practical SVN for PHP Developers
Version Control Training - First Lego League
Subversion
Subversion
Subversion
Subversion
Mercurial presentation
SVN Information
file+not+too+large
Introduction to Version Control
Ad

More from O. R. Kumaran (6)

PDF
Supervised learning
PDF
Search for Extra Terrestrial Intelligence
PDF
Gnu Privacy Guard - Intro
PDF
Understanding gil
PDF
Hrishikesh kulkarni's and madeline wills's powerpoint file on the talent code-
PDF
Hg wells time-machine.
Supervised learning
Search for Extra Terrestrial Intelligence
Gnu Privacy Guard - Intro
Understanding gil
Hrishikesh kulkarni's and madeline wills's powerpoint file on the talent code-
Hg wells time-machine.

Recently uploaded (20)

PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PPTX
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PPTX
Programs and apps: productivity, graphics, security and other tools
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PPTX
MYSQL Presentation for SQL database connectivity
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
Electronic commerce courselecture one. Pdf
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Spectral efficient network and resource selection model in 5G networks
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
Encapsulation_ Review paper, used for researhc scholars
Mobile App Security Testing_ A Comprehensive Guide.pdf
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
Building Integrated photovoltaic BIPV_UPV.pdf
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Programs and apps: productivity, graphics, security and other tools
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Review of recent advances in non-invasive hemoglobin estimation
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Understanding_Digital_Forensics_Presentation.pptx
MYSQL Presentation for SQL database connectivity
NewMind AI Weekly Chronicles - August'25 Week I
Electronic commerce courselecture one. Pdf
Reach Out and Touch Someone: Haptics and Empathic Computing
Spectral efficient network and resource selection model in 5G networks
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Profit Center Accounting in SAP S/4HANA, S4F28 Col11

Version control with Subversion

  • 1. Version Control with Subversion PLUG Linux Users Group Senthil_OR@Dell.com http://svnbook.red-bean.com/ 1
  • 2. Subversion In the world of open-source software, the Concurrent Versions System (CVS) was the tool of choice for version control for many years. Subversion is similar to CVS, but it avoids most of CVS noticeable flaws. The most common use for Subversion is to track changes to source code. But Subversion can be used to manage changes to any sort of information—images, music, databases, documentation, and so on. To Subversion, all data is just data. http://svnbook.red-bean.com/ 2
  • 3. What is Subversion? Subversion is a free/open-source version control system. Subversion manages files and directories, and the changes made to them, over time. This allows you to recover older versions of your data, or examine the history of how your data changed. Fosters Collaboration. Mistakes can be undone. Is NOT a Software Configuration Management system. Version control of any data, perhaps your telephone bills. ? http://svnbook.red-bean.com/ 3
  • 4. Subversion provides Directory versioning. True version history. Atomic commits Versioned metadata. Choice of Network Layers. Consistent Data Handling. Efficient Branching and Tagging Hackablity http://svnbook.red-bean.com/ 4
  • 5. Fundamental Concepts The kind of a file server. Repository Repository is What makes it special is that it remembers every change ever written to it: every change to every file, and even changes to the directory tree itself, such as the addition, deletion, and rearrangement of files and directories. When a client reads data from the repository, it normally sees only the latest version of the filesystem tree. But the client also has the ability to view previous states of the filesystem. For example, a client can ask historical questions like, “What did this directory contain last Wednesday?” http://svnbook.red-bean.com/ 5
  • 6. Fundamental Concepts: Versioning Models The problem of file sharing: Problem to Avoid! http://svnbook.red-bean.com/ 6
  • 7. Fundamental Concepts: Versioning Models: The Lock-Modify-Unlock Solution In this Model, Repository allows only one person to change at a time. Locking may cause Administrative Problems Locking may cause unnecessary serialization. Locking may create a false sense of security. http://svnbook.red-bean.com/ 7
  • 8. Fundamental Concepts: Versioning Models: The Copy-Modify-Merge Solution In this model, each user's client contacts the project repository and creates a personal working copy—a local reflection of the repository's files and directories. Users then work simultaneously and independently, modifying their private copies. Finally, the private copies are merged together into a new, final version. The version control system often assists with the merging, but ultimately a human being is responsible for making it happen correctly. http://svnbook.red-bean.com/ 8
  • 9. Fundamental Concepts: Versioning Models: The Copy-Modify-Merge Solution Figure 1: Figure 2: http://svnbook.red-bean.com/ 9
  • 10. Fundamental Concepts: Versioning Models: The Copy-Modify-Merge Solution What if changes do overlap? This situation is called a conflict, and it's usually not much of a problem When Harry asks his client to merge the latest repository changes into his working copy, his copy of file A is somehow flagged as being in a state of conflict: he'll be able to see both sets of conflicting changes, and manually choose between them. Note that software can't automatically resolve conflicts; only humans are capable of understanding and making the necessary intelligent choices. Once Harry has manually resolved the overlapping changes—perhaps after a discussion with Sally—he can safely save the merged file back to the repository. http://svnbook.red-bean.com/ 10
  • 11. Fundamental Concepts: Versioning Models: The Copy-Modify-Merge Solution The copy-modify-merge model may sound a bit chaotic, but in practice, it runs extremely smoothly. Users can work in parallel, never waiting for one another When they work on the same files, it turns out that most of their concurrent changes don't overlap at all; conflicts are infrequent. And the amount of time it takes to resolve conflicts is usually far less than the time lost by a locking system. In the end, it all comes down to one critical factor: user communication. When users communicate poorly, both syntactic and semantic conflicts increase. No system can force users to communicate perfectly, and no system can detect semantic conflicts http://svnbook.red-bean.com/ 11
  • 12. Fundamental Concepts: Subversion in Action. Subversion Repository URLs. svn checkout http://svn.example.com:9834/repos svn checkout file:///path/to/repos Working Copies. .svn directory in the working copy contains administrative files. To get a working copy, you checkout from the repository: $ svn checkout http://svn.example.com/repos/calc A calc/Makefile A calc/integer.c A calc/button.c Checked out revision 56. $ ls -A calc Makefile integer.c button.c .svn/ http://svnbook.red-bean.com/ 12
  • 13. Fundamental Concepts: Subversion in Action The act of publishing your changes is more commonly known as committing (or checking in) changes to the repository. $svn commit filename –m “log” #collaborator will do: #svn update $svn commit operation publishes changes to the any number of files and directories as a single atomic transaction. http://svnbook.red-bean.com/ 13
  • 14. Fundamental Concepts: Subversion in Action Repository Structure. Single Global Revision. Unlike most version control systems, Subversion's revision numbers apply to entire trees, not individual files http://svnbook.red-bean.com/ The Repository 14
  • 15. Fundamental Concepts: Subversion in Action Inside .svn directory keeps track as files working revision and timestamp of update. Unchanged, and Current. Locally Changed, and Current. Unchanged and Out of date Locally Changed and Out of date. http://svnbook.red-bean.com/ 15
  • 16. Basic Usage Getting data into Repository – svn import Recommended Repository layout. /trunk /branches /tags Initial checkout: svn checkout repopath http://svnbook.red-bean.com/ 16
  • 17. Basic Work Cycle Update your woking copy. svn update Make changes. svn add svn delete svn copy svn move Examine your changes svn status svn diff http://svnbook.red-bean.com/ 17
  • 18. Basic Work Cycle Possibly undo some changes. svn revert Resolve Conflicts ( Merge others changes) svn update svn resolved Commit your changes. svn commit http://svnbook.red-bean.com/ 18
  • 19. Examining History svn log svn diff svn cat svn list svn cleanup http://svnbook.red-bean.com/ 19
  • 20. Revision Specifiers HEAD The latest (or “youngest”) revision in the repository. BASE The revision number of an item in a working copy. If the item has been locally modified, the “BASE version” refers to the way the item appears without those local modifications COMMITTED The most recent revision prior to, or equal to, BASE, in which an item changed. PREV The revision immediately before the last revision in which an item changed. Technically, this boils down to COMMITTED-1. Revision Dates http://svnbook.red-bean.com/ 20
  • 21. Properties In addition to versioning your directories and files, Subversion provides interfaces for adding, modifying, and removing versioned metadata on each of your versioned directories and files. We refer to this metadata as properties. Custom revision properties are also frequently used. One common such use is a property whose value contains an issue tracker ID with which the revision is associated, perhaps because the change made in that revision fixes a bug filed in the tracker issue with that ID. http://svnbook.red-bean.com/ 21
  • 22. Property setting svn propset license -F /path/to/LICENSE calc/button.c property 'license' set on 'calc/button.c' svn:eol-style svn:executable svn:keywords svn:mime-type http://svnbook.red-bean.com/ 22
  • 23. Keyword substitution Subversion has the ability to substitute keywords—pieces of useful, dynamic information about a versioned file—into the contents of the file itself Date, Revision, Author, HeadURL, Id Set the svn:keyword property of any of the above Use the $Date$, $Author$ notation in the versioned file. The values will get automatically substituted. http://svnbook.red-bean.com/ 23
  • 24. Locking Locking concept supported by svn. http://svnbook.red-bean.com/ 24
  • 25. Branching and Merging Branches are svn copy operation on the Repository. Branches of Development http://svnbook.red-bean.com/ 25
  • 26. Branching and Merging After Branching Start point http://svnbook.red-bean.com/ 26
  • 27. Best practises of merging Tracking Changes Manually. Previewing merges. Noticing and ignoring ancestry Merges and Moves Creating a Tag, same as Branch http://svnbook.red-bean.com/ 27
  • 28. SVN Server configuration Svnserve Server Svnserve over ssh The Apache HTTP server http://svnbook.red-bean.com/ 28
  • 29. Comparision of the Repositories http://svnbook.red-bean.com/ 29
  • 30. That’s all Folks Lundblad is a leading contributor to the Subversion open source code project, which has produced a widely implemented code management system. He was among five leaders of open source code recognized in August at the O'Reilly Open Source Conference. Unlike the others, Lundblad is blind. Amazing! http://svnbook.red-bean.com/ 30