Source Code Revision Control Systems and Auto-Documenting

Total Page:16

File Type:pdf, Size:1020Kb

Source Code Revision Control Systems and Auto-Documenting Source Code Revision Control Systems and Auto-Documenting Headers for SAS® Programs on a UNIX or PC Multiuser Environment Terek Peterson, Alliance Consulting Group, Philadelphia, PA Max Cherny, Alliance Consulting Group, Philadelphia, PA ABSTRACT This paper discusses two free products available on UNIX and PC RCS, which is a more powerful utility than SCCS, was written in environments called SCCS (Source Code Control System) and early 1980s by Walter F. Tichy at Purdue University in Indiana. It RCS (Revision Control System). When used in a multi-user used many programs developed in the 1970s, learning from environment, these systems give programmers a tool to enforce mistakes of SCCS and can be seen as a logical improvement of change control, create versions of programs, document changes SCCS. Since RCS stores the latest version in full, it is much to programs, create backups during reporting efforts, and faster in retrieving the latest version. RCS is also faster than automatically update vital information directly within a SASâ SCCS in retrieving older versions and RCS has an easier program. These systems help to create an audit trail for interface for first time users. RCS commands are more intuitive programs as required by the FDA for a drug trial. than SCCS commands. In addition, there are less commands, the system is more consistent and it has a greater variety of options. Since RCS is a newer, more powerful source code INTRODUCTION control system, this paper will primarily focus on that system. The pharmaceutical industry is one of the most regulated industries in this country. Almost every step of a clinical trial is subject to very strict FDA regulations. SASâ programs used to KEY FEATURES OF SOURCE CONTROL UTILITIES summarize and analyze the results of a clinical trial are no RCS does not store the entire version of each file but only the differences between files. Therefore, all versions of a program exception. SASâ programs are considered by the FDA to be an important element of the reliability and accuracy of the information are being saved in a space efficient way. This can significantly reduce the amount of space required to keep all source files. used to approve and manufacture drugs. These programs must Since previous revisions remain easily accessible, all subsequent adhere to FDA regulations, which require extensive design and changes do not overwrite the original. Users are always able to documentation controls. The FDA requires SASâcode to be retrieve any given revision using version numbers, symbolic compliant with a System Development Life Cycle (SDLC). This names, dates, authors and states. Users can retreat to an older includes, but is not limited to, change control, backup/recovery version if they decide that the current version is incorrect, or if and installation procedures. Drug companies must be able to they want to see some text that has since been changed or provide documentation of their software processes and deleted. The only way to permanently delete or corrupt a procedures on demand in order to show their software has been program is to modify a file located in the RCS directory. The safely created and that any changes can be properly managed. ability to recreate old versions of a single file or a group of files allows users to use source code control as a simple backup Regardless of doing a clinical trial, adherence to a SDLC is a system and to recover and modify earlier releases of a product or good systems development practice. Besides helping drug document. By keeping all file revisions in a separate location, companies to meet the FDA regulations, the proper source code control utilities protect these programs from many implementation of a SDLC can reduce development costs and cases of accidental file deletion or corruption. If a user checks out decrease the amount of time it takes to report and analyze a a program and then accidentally removes it they can easily clinical trial. restore the original version of a program since a copy is kept in another location. Source code control refers to controlling the process of modifying software by managing changes. It lets developers control who RCS allows users to perform a limited, personalized backup of can make changes and when these changes are made. It helps to files. If files are being backed up once a week, programmers can prevent conflicts that could arise when many people edit the same check their daily progress notes into a source code control system file. It lets programmers save multiple versions of a file and and have a safe copy in case any of these files are accidentally choose the one they would like to use. It also lets them review damaged or deleted. This should not be viewed as a replacement the history of changes made to a file. for doing system backups because users will still be vulnerable to system or disk problems, but it may provide for a better control There are many different utilities and applications on the market over recovering from a disaster designed to help developers implement a source code control process. This paper discusses two of them, Revision Control RCS may be used to formalize the process of installing the final System (RCS) and Source Code Control System (SCCS). These version of a program from a user's environment to a production are free utilities which are readily available on most UNIX systems environment. A programmer may check in a final version of a and can be also installed on Windows 9x/NT. These systems program from their user area and then send a request to a have been used for many years and there is a lot of free dedicated person to install that version into a production area. documentation regarding their usage. The installation of a program into a production area will be done simply by checking out files from the RCS library. RSC VS. SCCS All changes to a file are automatically stored in a log file within the The SCCS system was developed by AT&T in the 1970s as a RCS subdirectory. Text of each revision, author identification, simple system to control source code development. It includes date and time of check-in and log message summarizing the various features that help support a production development change is kept by RCS. This allows someone the ability to review environment the entire history of a program without having to track down colleagues or look for old notes and comments. In another words, it creates an audit trail. RCS provides a version numbering scheme so users can tell which versions of a file are more recent. back into the RCS library after all necessary changes are made. By saving the history of revisions to a file, users are able to Therefore the RCS library functions as an extra protection layer analyze that history later. This can be invaluable because it gives between production and user areas. them the ability to see the logic of each incremental change that led from the original source to the current source. If several USING RCS people are working with the same version, a source code control One of the reasons why these utilities are so useful is their system can help them coordinate their work by alerting the simplicity. Most of the work is done through few easy-to- programmers, preventing one modification from corrupting the remember commands. Please look through the following other and keeping track of who did what and when. example to see how to use RCS. RCS allows branching of versions. This gives users the capability First, in order for RCS to work there must exist a RCS directory. to perform parallel development of several different variants of the It can be created in the same directory with program files or it may same file. For example, while working on the version 2.0 release be located elsewhere. users can produce a maintenance update to the 1.0 version by modifying several source files from the 1.0 release. RCS stores Make RCS directory : files as a series of revisions that evolved from each other, as a tree. Each node in the tree represents a revision of the same file. The first version of a file creates a root. All subsequent revisions mkdir RCS form a trunk. A branch occurs when a single revision forms more than two revisions. The latest version of both branches and trunk Create a sample program file called testrcs.sas with a header is called a head. Branches are used to maintain parallel versions containing some of the keywords: of the same file. These versions may be then merged together. RCS can automatically update information, including program /******************************************* name, author name, revision number, creation time and date within a program itself. A programmer does not have to worry Program: $Source$ about updating comments in a program since RCS does it automatically. This is arguably one of the best features of RCS. Version: $Revision$ Please note that source control systems are good tools for Date: $Date$ controlling all sorts of files, not just source code. Script, flat ASCII Programmer: $Author$ files, logs or output files can be controlled by using RCS as well. ------DO NOT MODIFY ABOVE THIS LINE ------ THE FLOW OF A PROGRAM USING THE RCS SYSTEM Project: Ax14723 Platform: UNIX Purpose: Print all patients in dataset demog First Draft Requirements: N/A Production t10_25.sas Check Parameters: N/A Version Version 1.1 -In t10_25.sas Macros: N/A RCS Version 1.1 Formats: N/A Library Put Read-Only into Input: N/A t10_25.sas Check Production Output: N/A Version 1.2 -Out Check Back Assumptions: N/A In Invocation: N/A Modify Program ------DO NOT MODIFY BELOW THIS LINE ------ Modification History: $Log$ Figure 1.
Recommended publications
  • Version Control – Agile Workflow with Git/Github
    Version Control – Agile Workflow with Git/GitHub 19/20 November 2019 | Guido Trensch (JSC, SimLab Neuroscience) Content Motivation Version Control Systems (VCS) Understanding Git GitHub (Agile Workflow) References Forschungszentrum Jülich, JSC:SimLab Neuroscience 2 Content Motivation Version Control Systems (VCS) Understanding Git GitHub (Agile Workflow) References Forschungszentrum Jülich, JSC:SimLab Neuroscience 3 Motivation • Version control is one aspect of configuration management (CM). The main CM processes are concerned with: • System building • Preparing software for releases and keeping track of system versions. • Change management • Keeping track of requests for changes, working out the costs and impact. • Release management • Preparing software for releases and keeping track of system versions. • Version control • Keep track of different versions of software components and allow independent development. [Ian Sommerville,“Software Engineering”] Forschungszentrum Jülich, JSC:SimLab Neuroscience 4 Motivation • Keep track of different versions of software components • Identify, store, organize and control revisions and access to it • Essential for the organization of multi-developer projects is independent development • Ensure that changes made by different developers do not interfere with each other • Provide strategies to solve conflicts CONFLICT Alice Bob Forschungszentrum Jülich, JSC:SimLab Neuroscience 5 Content Motivation Version Control Systems (VCS) Understanding Git GitHub (Agile Workflow) References Forschungszentrum Jülich,
    [Show full text]
  • Revision Control
    Revision Control Tomáš Kalibera, (Peter Libič) Department of Distributed and Dependable Systems http://d3s.mff.cuni.cz CHARLES UNIVERSITY PRAGUE Faculty of Mathematics and Physics Problems solved by revision control What is it good for? Keeping history of system evolution • What a “system” can be . Source code (single file, source tree) . Textual document . In general anything what can evolve – can have versions • Why ? . Safer experimentation – easy reverting to an older version • Additional benefits . Tracking progress (how many lines have I added yesterday) . Incremental processing (distributing patches, …) Allowing concurrent work on a system • Why concurrent work ? . Size and complexity of current systems (source code) require team work • How can concurrent work be organized ? 1. Independent modifications of (distinct) system parts 2. Resolving conflicting modifications 3. Checking that the whole system works . Additional benefits . Evaluating productivity of team members Additional benefits of code revision control • How revision control helps . Code is isolated at one place (no generated files) . Notifications when a new code version is available • Potential applications that benefit . Automated testing • Compile errors, functional errors, performance regressions . Automated building . Backup • Being at one place, the source is isolated from unneeded generated files . Code browsing • Web interface with hyperlinked code Typical architecture Working copy Source code repository (versioned sources) synchronization Basic operations • Check-out . Create a working copy of repository content • Update . Update working copy using repository (both to latest and historical version) • Check-in (Commit) . Propagate working copy back to repository • Diff . Show differences between two versions of source code Simplified usage scenario Source code Check-out or update repository Working 1 copy 2 Modify & Test Check-in 3 Exporting/importing source trees • Import .
    [Show full text]
  • FAKULTÄT FÜR INFORMATIK Leveraging Traceability Between Code and Tasks for Code Reviews and Release Management
    FAKULTÄT FÜR INFORMATIK DER TECHNISCHEN UNIVERSITÄT MÜNCHEN Master’s Thesis in Informatics Leveraging Traceability between Code and Tasks for Code Reviews and Release Management Jan Finis FAKULTÄT FÜR INFORMATIK DER TECHNISCHEN UNIVERSITÄT MÜNCHEN Master’s Thesis in Informatics Leveraging Traceability between Code and Tasks for Code Reviews and Release Management Einsatz von Nachvollziehbarkeit zwischen Quellcode und Aufgaben für Code Reviews und Freigabemanagement Author: Jan Finis Supervisor: Prof. Bernd Brügge, Ph.D. Advisors: Maximilian Kögel, Nitesh Narayan Submission Date: May 18, 2011 I assure the single-handed composition of this master’s thesis only supported by declared resources. Sydney, May 10th, 2011 Jan Finis Acknowledgments First, I would like to thank my adviser Maximilian Kögel for actively supporting me with my thesis and being reachable for my frequent issues even at unusual times and even after he left the chair. Furthermore, I would like to thank him for his patience, as the surrounding conditions of my thesis, like me having an industrial internship and finishing my thesis abroad, were sometimes quite impedimental. Second, I want to thank my other adviser Nitesh Narayan for helping out after Max- imilian has left the chair. Since he did not advise me from the start, he had more effort working himself into my topic than any usual adviser being in charge of a thesis from the beginning on. Third, I want to thank the National ICT Australia for providing a workspace, Internet, and library access for me while I was finishing my thesis in Sydney. Finally, my thanks go to my supervisor Professor Bernd Brügge, Ph.D.
    [Show full text]
  • Distributed Revision Control with Mercurial
    Distributed revision control with Mercurial Bryan O’Sullivan Copyright c 2006, 2007 Bryan O’Sullivan. This material may be distributed only subject to the terms and conditions set forth in version 1.0 of the Open Publication License. Please refer to Appendix D for the license text. This book was prepared from rev 028543f67bea, dated 2008-08-20 15:27 -0700, using rev a58a611c320f of Mercurial. Contents Contents i Preface 2 0.1 This book is a work in progress ...................................... 2 0.2 About the examples in this book ..................................... 2 0.3 Colophon—this book is Free ....................................... 2 1 Introduction 3 1.1 About revision control .......................................... 3 1.1.1 Why use revision control? .................................... 3 1.1.2 The many names of revision control ............................... 4 1.2 A short history of revision control .................................... 4 1.3 Trends in revision control ......................................... 5 1.4 A few of the advantages of distributed revision control ......................... 5 1.4.1 Advantages for open source projects ............................... 6 1.4.2 Advantages for commercial projects ............................... 6 1.5 Why choose Mercurial? .......................................... 7 1.6 Mercurial compared with other tools ................................... 7 1.6.1 Subversion ............................................ 7 1.6.2 Git ................................................ 8 1.6.3
    [Show full text]
  • INF5750/9750 - Lecture 1 (Part III) Problem Area
    Revision control INF5750/9750 - Lecture 1 (Part III) Problem area ● Software projects with multiple developers need to coordinate and synchronize the source code Approaches to version control ● Work on same computer and take turns coding ○ Nah... ● Send files by e-mail or put them online ○ Lots of manual work ● Put files on a shared disk ○ Files get overwritten or deleted and work is lost, lots of direct coordination ● In short: Error prone and inefficient The preferred solution ● Use a revision control system. RCS - software that allows for multiple developers to work on the same codebase in a coordinated fashion ● History of Revision Control Systems: ○ File versioning tools, e.g. SCCS, RCS ○ Central Style - tree versioning tools. e.g. CVS ○ Central Style 2 - tree versioning tools e.g. SVN ○ Distributed style - tree versioning tools e.g. Bazaar ● Modern DVCS include Git, Mercurial, Bazaar Which system in this course? ● In this course we will be using GIT as the version control system ● We will use the UIO git system, but you can also make git accounts on github.com or bitbucket for your own projects ● DHIS2 uses a different system: Launchpad/Bazaar How it works Working tree: Local copy of the source code Repository: residing on the Central storage of developer’s the source code at computer (a client) a server synchronize synchronize Commit Commit locally Centralized De-centralized The repository Central ● Remembers every change ever written to it (called commits) ● You can have a central or local repository. ○ Central = big server in
    [Show full text]
  • Simple Version Control of SAS Programs and SAS Data Sets Magnus Mengelbier, Limelogic Ltd, United Kingdom
    Simple Version Control of SAS Programs and SAS Data Sets Magnus Mengelbier, Limelogic Ltd, United Kingdom ABSTRACT SUBVERSION AND LIFE SCIENCES SAS data sets and programs that reside on the local network are most often stored using a simple Subversion can fit very well within Life Sciences and with a tweak here and there, the version and file system with no capability of version control, audit trail of changes and all the benefits. We revision control can be a foundation for a standard and compliant analytics environment and consider the possibility to capitalise on the capabilities of Subversion and other simple process. straightforward conventions to provide version control and an audit trail for SAS data sets, standard macro libraries and programs without changing the SAS environment. TRUNK –BRANCHES –TAGS OR DEV –QC -PROD INTRODUCTION The approach with trunk, branches and tags can also be used within reporting clinical trials, if outputs are standardized for a specific study and used in multiple reporting events. Most organisations will use the benefits of a local network drive, a mounted share or a dedicated SAS server file system to store and archive study data in multiple formats, analytical programs and trunk Pre-lock data and programs for reporting purposes their respective logs, outputs and deliverables. branch Deliverables for a specific reporting event such as Investigator Brochure A manual process is most often implemented to retain versions and snapshots of data, programs (IB), Investigational New Drug (IND), Clinical Study Reports (CSRs), etc and deliverables with varying degrees of success most often. Although not perfect, the process is tag Dry run, Database Lock, Draft Outputs, Final Outputs sufficient to a degree.
    [Show full text]
  • Tech Talk - Devops – a New Software Development Paradigm
    Tech Talk - Devops – a New Software Development Paradigm June 23, 2015 DevOps Exploiting the natural tension between Development & Operations Development Operations Collaboration & Orchestration DevOps a methodology of software development that emphasizes communication, collaboration and integration between software developers and operations personnel. a response to the interdependence of software development and IT operations. It aims to help an organization rapidly produce software products and services DevOps History (per Wikipedia) At the Agile 2008 conference, Andrew Clay Shafer and Patrick Debois discussed "Agile Infrastructure", afterwards creating the Agile System Administrators Group on Google. The term "DevOps" was popularized through a series of "DevOps Days" starting in 2009 in Belgium. Since then, there have been DevOps Days conferences held in many countries worldwide. A DevOps Functional Definition Agile Methods applied to Software Engineering DevOps requires a Lean practice Maximizing customer value while minimizing waste. The goal is to provide perfect value to the customer through a perfect value creation process that has zero waste. If an effort doesn’t add value, don’t do it. DevOps Simplified Phases Release Configuration Management Orchestration . Continuous Integration/Continuous Delivery Monitoring DevOps vs traditional Agile Devops = Agile + Process Rhythm DevOps Getting Started Tools Inventory Skills Assessment Task to be accomplished Tool Selection (there are many more tools than can be used!) Assignment of Responsibility DevOps should be language neutral, although modern languages popular today are: Java, Ruby, Python, C++,… DevOps lifecycle – (New Relic) • Create new code changes • Check in code • Pull code changes, check latest patches, and build • Test (continuous integration server to generate builds & arrange releases): • individual models • integration tests • user acceptance tests.
    [Show full text]
  • Revision Control Solutions to Protect Your Documents and Track Workflow
    Revision Control Solutions to Protect Your Documents and Track Workflow WHITE PAPER Contents Overview 3 Common Revision Control Systems 4 Revision Control Systems 4 Using BarTender with Revision Control Systems 4 Limitations of Windows Security 5 Librarian 6 Librarian Features 6 Benefits of Using Librarian with BarTender 7 File States, Publishing and Workflow in Librarian 8 Don’t Forget About Security! 9 Related Documentation 10 Overview A revision control system is based around the concept of tracking changes that happen within directories or files, and preventing one user from overwriting the work of another. Some revision control systems are also used to establish and track workflow for the progression of a file through a series of states. The collection of files or directories in a revision control system are usually called a repository. These systems allow you to specify a directory, file or group of files that will have their changes tracked. This frequently entails users "checking out" and "checking in" files from a repository. Changes are tracked as the user edits the folder or file; these changes will be visible to all users once the item is checked back in. Each revision is annotated with a timestamp and the person making the change. Some of the benefits of revision control include: l Automatic revision numbering for easy tracking. l Enhanced security. Not only does a "check in" and "check out" system keep one user's work from overwriting another, it can prevent unauthorized or even malicious users from accessing a document. l Some revision control systems include publishing "states," which allow you to track the publishing progress of a document and establish a logical, traceable workflow.
    [Show full text]
  • Use of Information Centric Networks in Revision Control Systems
    Use of Information-Centric Networks in Revision Control Systems January 2011 LARS BROWN ERIK AXELSSON Master’s Thesis at Ericsson Research Supervisors: Börje Ohlman, Ericsson Research and Bengt Ahlgren, SICS Examiner: Mihhail Matskin, KTH TRITA xxx yyyy-nn PREFACE This report is a product of a master thesis work at the School of Information and Communication Technology, KTH. The five months of work and research leading to this final report was conducted at the Swedish Institute of Computer Science (SICS) and Ericsson Research in Kista, Sweden. The authors would like to thank the people who have given us support in our work, without you this thesis would never have been done in time. First of all a special thanks to our supervisors, at SICS, Bengt Ahlgren and at Ericsson Research, Börje Ohlman. Whose support and guidance have been very valuable in keeping the project on the right track. They have helped us in focusing on the essential parts of our problem and have kept us motivated throughout our work. We are also grateful for the advice given by the leader of the OpenNetInf project, Christian Dannewitz, at the University of Paderborn, who gave us design consideration tips in the initial phase of our project work. We have also got help from people at the Palo Alto Research Center (PARC), in particular we would like to thank Paul Rasmussen, Michael Plass and Nick Briggs for their clarifications about the CCNx prototype. Furthermore we would like to thank the coworkers we have been in contact with at SICS and at Ericsson research for their tips and feedback which have helped us during our project.
    [Show full text]
  • TIBCO Designer User's Guide
    TIBCO Designer™ User’s Guide Software Release 5.10 August 2015 Two-Second Advantage® Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO SOFTWARE IS SOLELY TO ENABLE THE FUNCTIONALITY (OR PROVIDE LIMITED ADD-ON FUNCTIONALITY) OF THE LICENSED TIBCO SOFTWARE. THE EMBEDDED OR BUNDLED SOFTWARE IS NOT LICENSED TO BE USED OR ACCESSED BY ANY OTHER TIBCO SOFTWARE OR FOR ANY OTHER PURPOSE. USE OF TIBCO SOFTWARE AND THIS DOCUMENT IS SUBJECT TO THE TERMS AND CONDITIONS OF A LICENSE AGREEMENT FOUND IN EITHER A SEPARATELY EXECUTED SOFTWARE LICENSE AGREEMENT, OR, IF THERE IS NO SUCH SEPARATE AGREEMENT, THE CLICKWRAP END USER LICENSE AGREEMENT WHICH IS DISPLAYED DURING DOWNLOAD OR INSTALLATION OF THE SOFTWARE (AND WHICH IS DUPLICATED IN THE LICENSE FILE) OR IF THERE IS NO SUCH SOFTWARE LICENSE AGREEMENT OR CLICKWRAP END USER LICENSE AGREEMENT, THE LICENSE(S) LOCATED IN THE “LICENSE” FILE(S) OF THE SOFTWARE. USE OF THIS DOCUMENT IS SUBJECT TO THOSE TERMS AND CONDITIONS, AND YOUR USE HEREOF SHALL CONSTITUTE ACCEPTANCE OF AND AN AGREEMENT TO BE BOUND BY THE SAME. This document contains confidential information that is subject to U.S. and international copyright laws and treaties. No part of this document may be reproduced in any form without the written authorization of TIBCO Software Inc. TIBCO, Two-Second Advantage, TIBCO Hawk, TIBCO Rendezvous, TIBCO Runtime Agent, TIBCO ActiveMatrix BusinessWorks, TIBCO Administrator, TIBCO Designer, TIBCO ActiveMatrix Service Gateway, TIBCO BusinessEvents, TIBCO BusinessConnect, and TIBCO BusinessConnect Trading Community Management are either registered trademarks or trademarks of TIBCO Software Inc.
    [Show full text]
  • Evolution of Version Control in Open Source Lessons Learned Along the Path to Distributed Version Control
    Evolution of Version Control in Open Source Lessons learned along the path to distributed version control Chris Aniszczyk (Red Hat) Principal Software Engineer [email protected] http://aniszczyk.org About Me I've been using and hacking open source for ~12 years - contribute{d} to Gentoo Linux, Fedora Linux, Eclipse Eclipse Board of Directors, Committer Representative Member in the Eclipse {Architecture,Planning} Council I like to run! (just finished Chicago marathon in 3:20) Co-author of RCP Book (www.eclipsercp.org) Evolution of Version Control in Open Source | © 2010 by Chris Aniszczyk Agenda History of Version Control (VCS) The Rise of Distributed Version Control (DVCS) Lessons Learned at Eclipse moving to a DVCS Conclusion Q&A Picture 5 Evolution of Version Control in Open Source | © 2010 by Chris Aniszczyk Version Control Version Control Systems manage change “The only constant is change” (Heraclitus) Evolution of Version Control in Open Source | © 2010 by Chris Aniszczyk Why Version Control? VCS became essential to software development because: They allow teams to collaborate They manage change and allow for inspection They track ownership They track evolution of changes They allow for branching They allow for continuous integration Evolution of Version Control in Open Source | © 2010 by Chris Aniszczyk Version Control: The Ancients 1972 – Source Code Control System (SCCS) Born out of Bell Labs, based on interleaved deltas No open source implementations as far as I know 1982 – Revision Control System (RCS) Released as an alternative
    [Show full text]
  • Version Control
    Génie Logiciel Avancé Cours 7 — Version Control Stefano Zacchiroli [email protected] Laboratoire PPS, Université Paris Diderot - Paris 7 5 mai 2011 URL http://upsilon.cc/zack/teaching/1011/gla/ Copyright © 2011 Stefano Zacchiroli License Creative Commons Attribution-ShareAlike 3.0 Unported License http://creativecommons.org/licenses/by-sa/3.0/ Stefano Zacchiroli (Paris 7) Version Control 5 mai 2011 1 / 58 Disclaimer slides in English interactive demos Stefano Zacchiroli (Paris 7) Version Control 5 mai 2011 2 / 58 Sommaire 1 Version control Configuration management diff & patch Version control concepts Brief history of version control systems 2 Revision Control System (RCS) 3 Concurrent Versions System (CVS) 4 Subversion 5 Git 6 References Stefano Zacchiroli (Paris 7) Version Control 5 mai 2011 3 / 58 Sommaire 1 Version control Configuration management diff & patch Version control concepts Brief history of version control systems 2 Revision Control System (RCS) 3 Concurrent Versions System (CVS) 4 Subversion 5 Git 6 References Stefano Zacchiroli (Paris 7) Version Control 5 mai 2011 4 / 58 Sommaire 1 Version control Configuration management diff & patch Version control concepts Brief history of version control systems 2 Revision Control System (RCS) 3 Concurrent Versions System (CVS) 4 Subversion 5 Git 6 References Stefano Zacchiroli (Paris 7) Version Control 5 mai 2011 5 / 58 Change During the life time of a software project, everything changes : bugs are discovered and have to be fixed (code) system requirements change and need to be implemented external dependencies (e.g. new version of hardware and software you depend upon) change competitors might catch up most software systems can be thought of as a set of evolving versions potentially, each of them has to be maintained concurrently with the others Stefano Zacchiroli (Paris 7) Version Control 5 mai 2011 6 / 58 Configuration management Definition (Configuration Management) Configuration Management (CM) is concerned with the policies, processes, and tools for managing changing software systems.
    [Show full text]