Version Control Systems
|
|
|
- Lenard Mitchell
- 10 years ago
- Views:
Transcription
1 Version Control Systems ESA 2015/2016 Adam Belloum Material Prepared by Eelco Schatborn
2 Today IntroducGon to Version Control Systems Centralized Version Control Systems RCS CVS SVN Decentralized Version Control Systems Git, (wrinen in C) used by the Linux Kernel and Ruby on Rails. Mercurial, (wrinen in Python) used by Mozilla and OpenJDK Bazaar (wrinen in Python) used by Ubuntu developer Darcs, (wrinen in Haskell).
3 Version Control systems A version control system provides support for the development of so6ware in pargcular. documengng an annotated history of a project is a complex ma9er (changes, bugs) mulgple editors in use, keep developers from overwrigng each others work backtracking to a previous version branching
4 Version Control Systems Most important Unix Version Control programs SCCS (Source Code Control System) Bell Labs, Proprietary. IntroducGon of most important concepts. Not used much anymore. RCS (Revision Control System) Purdue University, early 80's. Open source. Basis of CVS. CVS (Concurrent Version System) Early 90's. Maintained by FSF (Free So^ware FoundaGon) SVN (Subversion) Early CollabNet
5 Today IntroducGon to Revision Version Control Systems Centralized Version Control Systems RCS CVS SVN Decentralized Version Control Systems GIT
6 Centralized Version Control Systems It s like having your source files on a File server and coordinate with your colleagues on the version number you re working on. By Durai Raj CVS Concurrent Versioning System
7 How Does centralized VCS Work? centralized VCS uses a client / server architecture A sys admin would normally install the server The Server Maintains THE repository Developers use the client The client allows for checking in/out, and UpdaGng, etc.. By Durai Raj CVS Concurrent Versioning System
8 Versioning Systems Versioning Systems allow: mulhple users to modify the same code To store ONE master copy of the source code To automate the update between versions Access to any previous state of the source code
9 VCS do s and don'ts Facilitates bug detechon when so^ware is modified Economy in disk space while saving versions Prevents code over- wrihng in a team project Not a build system Not a subshtute for communicagon between developers or for management It will not create any magic for you. By Durai Raj CVS Concurrent Versioning System
10 Check- In, and Check- Out The version file for a document contains extra administrahve informahon before you can go and look at or change a file, a working version has to be created; this is called check-out. If you want to make changes, PUT a lock on the file at check- out (Very OLD WAY, RCS) submigng your changes to a file to the system is called a check-in
11 Check- In, Check- Out: commands ci co Check- in: put the work file into the version file; à create the version file if it does not exist. The system requests a descripgon of the changes Check- out: create a new work file from the version file (read- only) co -l Check- out with lock; write permissions co -rn Check- out file with revision number N
12 Check- In, Check- Out: Example file Check-In file > file,v [version 1.1] Check-Out -lock file file < edit file Check-In file > file,v [version 1.2] Check-Out - Revision number file file < [old version]
13 Revision numbering Numbering starts with 1.1 With every check- in the second number is increased by 1 The first number can be increased by using the - r opgon; for instance, using check-in revision 2 will set the revision number to
14 When to commit Commit to mark a working state that you might want to return to later. Commit related files in a single operagon. Use a common log message for all the files. (useful but not very wise if the code is not fully tested!!!) Commit to backup your sources Commit from an office desktop to be able to access the files from home much faster than through filesystem sharing. By Durai Raj CVS Concurrent Versioning System
15 CollaboraGon (old Gme) If a user A locked a file using check-out -lock, he or she gets write permissions on the file If user B the tries to lock the file in the same way, a warning is given that the file is locked B can decide to go forward anyway, in which case A will get a warning (by )
16 RCS InformaGon InformaGon in a revision can be added to the working file The informagon itself is part of the version file To copy that informagon to the working file during check- out one uses keywords for example use: Id to insert informagon on the author, date, version envelop the keyword with $... $ Other keywords are Author, Log, Date, Locker,...
17 Branching say you are working with version 2.5, but want to start an alternahve development from version 1.8 using checkout -l -r1.8 a working file can be created from version 1.8 Note: should you check- in that file you would get version 2.6! use ci -r1.8.1 to start a new branch from version 1.8 (first new version is )
18 Branch if you need... to create sustaining (patch) releases to have multiple development lines from a single repository to do experimental development to merge later or forget about it to keep temporary state of development without affecting builds By Durai Raj CVS Concurrent Versioning System
19 Concurrent checkout Master Repository foo.c Checkout does not lock the files in repository Ganesh Working Copy V1.7 checkin V1.8 or 1.9 Subbu checkout V1.1 Working Copy V1.1 X checkout V1.2 Gopinath Working Copy V1.2 X checkin prohibited Sundar Mansoor (Code walkthrough) Working Copy V1.7 checkin V1.8 or 1.9 Working Copy V checkin V By Durai Raj CVS Concurrent Versioning System
20 Merge Branches can be merged. Say a file is a work file for revision , then rcsmerge -r1.8 -r2.5 file will give a merge of the file with version 2.5. A check- in will now create version 2.6. A merge operagon looks at the differences between two versions an places as much as possible into the new file. If there is a conflict it will be shown between <<<<<< and >>>>>>
21 Today IntroducGon to Revision Version Control Systems Centralized Version Control Systems RCS CVS SVN Decentralized Version Control Systems GIT
22 CVS: Concurrent Version System inihally a front- end to RCS newest implementagons are no longer dependent on RCS they do use the RCS format for the version file more funchonality than RCS, more complex interface, RCS can be used for small projects with few Editors CVS can handle large projects with many designers in different places (worldwide) no exclusive locks
23 THE Repository CVS keeps the version files for a project in a CVS repository a directory on a machine reachable by all pargcipants (CVS server) people can work locally or remotely through ssh. In both cases the environment variable CVSROOT must point to the repository The repository can be split up into modules - - a group of files and/or directories to work on module foo a working directory has to be created Using cvs checkout foo CVS then creates a subdirectory foo containing the work files of the foo module
24 Example checkout $ cvs checkout foo cvs checkout: Updating foo U foo/.cvsignore U foo/file1 U foo/file2 U foo/file3 $ ls foo CVS file1 file2 file3
25 Commit and Update A^er making changes a check- in can be done file using cvs commit if more than one person is working on the module it is standard pracgce to do an update first using cvs update an update will check if others have commined anything since your last check- out if so, your last work file will be merged with the latest version
26 Example update $ cvs update cvs update: Updating. U file1 U file2 RCS file: <CVSROOT-path>/foo/file3,v retrieving revision 1.4 retrieving revision 1.5 Merging differences between 1.4 and 1.5 into file3 M file3 $
27 Commit if your files have been merged a^er an update you should check if everything STILL works Then do another update $ cvs update cvs update: Updating. M file3 CVS tells us file3 is the only file you have adapted, no others have commined the file since your last update using cvs commit file3 you can check- in the file
28 Log message A^er the cvs commit command CVS will open an editor ($CVSEDITOR) so that a descripgon of the changes can be given Very important advise: DONOT PUT DUMMY TEXT, explain exactly what you did
29 The CVSROOT module To inigalize the repository run: cvs init in the root directory CVSROOT A^er the command the CVSROOT directory contains the special module CVSROOT That module contains configuragon informagon on the repository
30 StarGng a new module When a new project is started a new module must be created in the repository using cvs import 1. go to the directory you wish to import 2. use: cvs import <module name> <vendor tag> <release tag> 3. CVS will then ask you to type in informagon on the project in an editor
31 Import Example $ mkdir example $ mv file* example/ $ cd example $ cvs import example example_project ver_0_0 A module example is now made; the example directory in the repository contains the version files file1,v and file2,v
32 Adding and removing files adding a file to a module 1. put the file in the work directory 2. cvs add <file> removing a file from a module 1. first remove the file from your working directory 2. cvs remove <file> Note Directories cannot be removed All changes are made at the next commit command
33 Viewing changes cvs log <file> command gives an overview of the log data of a file. Who made what changes and when. cvs diff -c -r 1.6 -r 1.7 <file> will give a list of differences between version 1.6 and 1.7
34 Tagging a project MyProject can be given a tag MyTag to which you can refer later on revision number can be referred to, but each file can have a different version number use the command cvs tag MyTag in the working directory of the module a tagged version can be retrieved using cvs checkout -rmytag MyProject there is always one central branch, the `trunk the tag name for the latest revision of the trunk is always HEAD
35 Branching CVS work with branches in terms of tags a branch tag refers to the branch use the command cvs tag -b <branchname> in the work directory of the module to be branched use the command cvs checkout -r <branchname> to get a working copy of a branch, if you commit now the new revision will be added to the branch
36 By Durai Raj CVS Concurrent Versioning System
37 Working on branches cvs tag -b rel_1_fix patch release_1 1.4 release_2 cvs up -r rel_1_fix cvs tag release_1 cvs tag release_2 By Durai Raj CVS Concurrent Versioning System
38 Merging to merge a branch with HEAD use cvs update j branchname this gives a new version of the trunk a warning rcsmerge: warning: conflicts during merge if there are conflicts with a certain file if that happens a copy of the HEAD version is kept as.file1.5 (file is the name and 1.5 the revision number) in the le itself CVS will mark the lines where the conflicts are (between <<<<<< and >>>>>>)
39 WinCVS: Configuration hnp://cvsgui.sourceforge.net/index.html Your login By Durai Raj CVS Concurrent Versioning System
40 state icon revision number file type WinCvs: Main screen file view modules status view By Durai Raj CVS Concurrent Versioning System
41 Checking out the sources By Durai Raj CVS Concurrent Versioning System
42 Source history & diff By Durai Raj CVS Concurrent Versioning System
43 Commit, Update & Tag By Durai Raj CVS Concurrent Versioning System
44 Today IntroducGon to Version Control Systems Centralized Version Control Systems RCS CVS SVN Decentralized Version Control Systems GIT
45 Subversion (SVN) Project summary A compelling replacement for CVS Offers the funcgonality of CVS using more or less the same interface BeNer implementagon
46 Differences with CVS Atomic commit When you commit a group of files, they should either be successfully commined, or not at all. CVS allows for pargal commits Renaming in CVS renaming can only be done by creagng a new file, adding it to the repository and removing the old one. That way all version informagon on a file is lost. SVN provides move. Versioning directories directories can also be moved and renamed in SVN Binary diffs The diff mechanism of CVS is geared towards text files, which makes it very inefficient when working with binary files. SVN improves on that
47 Differences with CVS Revision numbering in CVS files are numbered individually. In SVN the whole module is numbered CVS: revision 2.6 of <file> is always different from revision 2.7 SVN: it does not have to be a difference between revision 30 and revision 31 for a given file
48 Subversion Commands co/checkout ci/commit up/update add, remove/rm cp/copy mv/move Log diff
49 Today IntroducGon to Version Control Systems Centralized Version Control Systems RCS CVS SVN Decentralized Version Control Systems GIT
50 GIT a distributed revision control system. most features from Subversion idengcal interface file handling (binary, etc) more branching oriented everyone keeps Its own root, you can merge with other People manual access control (YOU decide who to merge with) see hnp://git- scm.com/
51 Snapshots, Not Differences most other systems store informagon as a list of file- based changes hnp://progit.org/book/ch1-3.html
52 Snapshots, Not Differences a set of snapshots of a mini filesystem hnp://progit.org/book/ch1-3.html
53 Nearly Every OperaHon Is Local Most operagons in Git only need local files and resources to operate generally no informagon is needed from another computer on your network. Because you have the engre history of the project right there on your local disk, most operagons seem almost instantaneous. hnp://progit.org/book/ch1-3.html
54 Git Has Integrity Everything in Git is check- summed before it is stored and is then referred to by that checksum. This means it s impossible to change the contents of any file or directory without Git knowing about it. FuncGonality built into Git at the lowest levels and is integral to its philosophy. You can t lose informahon in transit or get file corrupgon without Git being able to detect it. Mechanism that Git uses for this check summing is called a SHA- 1 hash. This is a 40- character string composed of hexadecimal characters (0 9 and a f) and calculated based on the contents of a file or directory structure in Git. hnp://progit.org/book/ch1-3.html
55 Git Generally Only Adds Data When you do acgons in Git, nearly all of them only ADD data to the Git database. difficult to get the system to do anything that is not undoable or to make it erase data in any way. As in any VCS, you can lose or mess up changes you haven t commined yet; but a^er you commit a snapshot into Git, it is very difficult to lose, especially if you regularly push your database to another repository. hnp://progit.org/book/ch1-3.html
56 GIT Three States Git has three main states that your files can reside in: commined, modified, and staged Commi9ed file is stored in the local database. Modified file is modified but have not commined it to the database yet. Staged file is marked a modified file in its current version to go into the next commit snapshot. hnp://progit.org/book/ch1-3.html hnp://gitolite.com/uses- of- index.html
57 Skipping the Staging Area Although it can be useful for cra^ing commits exactly how you want them, the staging area is somegmes a bit more complex than you need in your workflow. You can skip the staging area, Git provides a simple shortcut. - a opgon to the git commit command makes Git automagcally stage every file that is already tracked before doing the commit, legng you skip the git add hnp://progit.org/book/ch2-2.html
58 IniHalizing a Repository in an ExisHng Directory start to track an exisgng project in Git, go to the project s directory and type: $ git init start version- controlling exisgng files (as opposed to an empty directory), do an inigal commit on these files: $ git add *.c $ git add README $ git commit -m 'initial project version hnp://progit.org/book/ch2-2.html
59 Cloning an ExisHng Repository get a copy of an exisgng Git repository $ git clone git://github.com/schacon/grit.git [mygrit] important disgncgon: Git receives a copy of nearly all data that the server has. Every version of every file for the history of the project is pulled down hnp://progit.org/book/ch2-2.html
60 Cloning an ExisHng Repository Checking the Status of Files $git status Tracking New Files $ git add file Staging Modified Files $ git add file Commigng Your Changes $ git commit Removing Files $ rm file; git rm file Moving Files $ git mv file1 file2 Ignoring Files create a.gitignore file hnp://progit.org/book/ch2-2.html
Version Control with. Ben Morgan
Version Control with Ben Morgan Developer Workflow Log what we did: Add foo support Edit Sources Add Files Compile and Test Logbook ======= 1. Initial version Logbook ======= 1. Initial version 2. Remove
Continuous Integration. CSC 440: Software Engineering Slide #1
Continuous Integration CSC 440: Software Engineering Slide #1 Topics 1. Continuous integration 2. Configuration management 3. Types of version control 1. None 2. Lock-Modify-Unlock 3. Copy-Modify-Merge
Version Control with Subversion
Version Control with Subversion Introduction Wouldn t you like to have a time machine? Software developers already have one! it is called version control Version control (aka Revision Control System or
Introduction to Git. Markus Kötter [email protected]. Notes. Leinelab Workshop July 28, 2015
Introduction to Git Markus Kötter [email protected] Leinelab Workshop July 28, 2015 Motivation - Why use version control? Versions in file names: does this look familiar? $ ls file file.2 file.
Source Code Management/Version Control
Date: 3 rd March 2005 Source Code Management/Version Control The Problem: In a typical software development environment, many developers will be engaged in work on one code base. If everyone was to be
Revision control systems (RCS) and
Revision control systems (RCS) and Subversion Problem area Software projects with multiple developers need to coordinate and synchronize the source code Approaches to version control Work on same computer
Version Control Tools
Version Control Tools Source Code Control Venkat N Gudivada Marshall University 13 July 2010 Venkat N Gudivada Version Control Tools 1/73 Outline 1 References and Resources 2 3 4 Venkat N Gudivada Version
Distributed Version Control with Mercurial and git
OpenStax-CNX module: m37404 1 Distributed Version Control with Mercurial and git Hannes Hirzel This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 3.0 Abstract
Introduction to Version Control
Research Institute for Symbolic Computation Johannes Kepler University Linz, Austria Winter semester 2014 Outline General Remarks about Version Control 1 General Remarks about Version Control 2 Outline
Source Control Systems
Source Control Systems SVN, Git, GitHub SoftUni Team Technical Trainers Software University http://softuni.bg Table of Contents 1. Software Configuration Management (SCM) 2. Version Control Systems: Philosophy
Version Uncontrolled! : How to Manage Your Version Control
Version Uncontrolled! : How to Manage Your Version Control Harold Dost III, Raastech ABSTRACT Are you constantly wondering what is in your production environment? Do you have any doubts about what code
CSE 374 Programming Concepts & Tools. Laura Campbell (Thanks to Hal Perkins) Winter 2014 Lecture 16 Version control and svn
CSE 374 Programming Concepts & Tools Laura Campbell (Thanks to Hal Perkins) Winter 2014 Lecture 16 Version control and svn Where we are Learning tools and concepts relevant to multi-file, multi-person,
CPSC 491. Today: Source code control. Source Code (Version) Control. Exercise: g., no git, subversion, cvs, etc.)
Today: Source code control CPSC 491 Source Code (Version) Control Exercise: 1. Pretend like you don t have a version control system (e. g., no git, subversion, cvs, etc.) 2. How would you manage your source
Version control. HEAD is the name of the latest revision in the repository. It can be used in subversion rather than the latest revision number.
Version control Version control is a powerful tool for many kinds of work done over a period of time, including writing papers and theses as well as writing code. This session gives a introduction to a
Version Control with Git. Linux Users Group UT Arlington. Rohit Rawat [email protected]
Version Control with Git Linux Users Group UT Arlington Rohit Rawat [email protected] Need for Version Control Better than manually storing backups of older versions Easier to keep everyone updated
Lab Exercise Part II: Git: A distributed version control system
Lunds tekniska högskola Datavetenskap, Nov 25, 2013 EDA260 Programvaruutveckling i grupp projekt Labb 2 (part II: Git): Labbhandledning Checked on Git versions: 1.8.1.2 Lab Exercise Part II: Git: A distributed
Version Control with Svn, Git and git-svn. Kate Hedstrom ARSC, UAF
1 Version Control with Svn, Git and git-svn Kate Hedstrom ARSC, UAF 2 Version Control Software System for managing source files For groups of people working on the same code When you need to get back last
Version control with GIT
AGV, IIT Kharagpur September 13, 2012 Outline 1 Version control system What is version control Why version control 2 Introducing GIT What is GIT? 3 Using GIT Using GIT for AGV at IIT KGP Help and Tips
Version Control with Git. Dylan Nugent
Version Control with Git Dylan Nugent Agenda What is Version Control? (and why use it?) What is Git? (And why Git?) How Git Works (in theory) Setting up Git (surviving the CLI) The basics of Git (Just
Git Basics. Christopher Simpkins [email protected]. Chris Simpkins (Georgia Tech) CS 2340 Objects and Design CS 1331 1 / 22
Git Basics Christopher Simpkins [email protected] Chris Simpkins (Georgia Tech) CS 2340 Objects and Design CS 1331 1 / 22 Version Control Systems Records changes to files over time Allows you to
Version Control with Git. Kate Hedstrom ARSC, UAF
1 Version Control with Git Kate Hedstrom ARSC, UAF Linus Torvalds 3 Version Control Software System for managing source files For groups of people working on the same code When you need to get back last
Using Git for Project Management with µvision
MDK Version 5 Tutorial AN279, Spring 2015, V 1.0 Abstract Teamwork is the basis of many modern microcontroller development projects. Often teams are distributed all over the world and over various time
Data management on HPC platforms
Data management on HPC platforms Transferring data and handling code with Git scitas.epfl.ch September 10, 2015 http://bit.ly/1jkghz4 What kind of data Categorizing data to define a strategy Based on size?
Version Control Systems: SVN and GIT. How do VCS support SW development teams?
Version Control Systems: SVN and GIT How do VCS support SW development teams? CS 435/535 The College of William and Mary Agile manifesto We are uncovering better ways of developing software by doing it
An Introduction to Mercurial Version Control Software
An Introduction to Mercurial Version Control Software CS595, IIT [Doc Updated by H. Zhang] Oct, 2010 Satish Balay [email protected] Outline Why use version control? Simple example of revisioning Mercurial
Using Subversion in Computer Science
School of Computer Science 1 Using Subversion in Computer Science Last modified July 28, 2006 Starting from semester two, the School is adopting the increasingly popular SVN system for management of student
Source code management systems
Source code management systems SVN, Git, Mercurial, Bazaar,... for managing large projects with multiple people work locally or across a network store and retrieve all versions of all directories and files
Version Control with Subversion and Xcode
Version Control with Subversion and Xcode Author: Mark Szymczyk Last Update: June 21, 2006 This article shows you how to place your source code files under version control using Subversion and Xcode. By
Introduction to Subversion
Introduction to Subversion Getting started with svn Matteo Vescovi 19/02/2010 Agenda A little bit of theory Overview of Subversion Subversion approach to Version Control Using Subversion Typical subversion
CISC 275: Introduction to Software Engineering. Lab 5: Introduction to Revision Control with. Charlie Greenbacker University of Delaware Fall 2011
CISC 275: Introduction to Software Engineering Lab 5: Introduction to Revision Control with Charlie Greenbacker University of Delaware Fall 2011 Overview Revision Control Systems in general Subversion
Version Control for Computational Economists: An Introduction
Version Control for Computational Economists: An Introduction Jake C. Torcasso April 3, 2014 Starting Point A collection of files on your computer Changes to files and new files over time Interested in
Integrated version control with Fossil SCM
Integrated version control with Fossil SCM Tech Talk 2009-12-01 Arne Bachmann Folie 1 Overview Web address www.fossil-scm.org Author Dr. D.R. Hipp - Author of License GPL v2 Motto No information shall
Annoyances with our current source control Can it get more comfortable? Git Appendix. Git vs Subversion. Andrey Kotlarski 13.XII.
Git vs Subversion Andrey Kotlarski 13.XII.2011 Outline Annoyances with our current source control Can it get more comfortable? Git Appendix Rant Network traffic Hopefully we have good repository backup
FEEG6002 - Applied Programming 3 - Version Control and Git II
FEEG6002 - Applied Programming 3 - Version Control and Git II Sam Sinayoko 2015-10-16 1 / 26 Outline Learning outcomes Working with a single repository (review) Working with multiple versions of a repository
Version Control. Luka Milovanov [email protected]
Version Control Luka Milovanov [email protected] Configuration Management Configuration management is the management of system change to software products Version management: consistent scheme of version
Version Control with Git
Version Control with Git Ben Wasserman ([email protected]) 15-441 Computer Networks Recitation 3 1/28 What is version control? Revisit previous code versions Backup projects Work with others Find where
Version Control! Scenarios, Working with Git!
Version Control! Scenarios, Working with Git!! Scenario 1! You finished the assignment at home! VC 2 Scenario 1b! You finished the assignment at home! You get to York to submit and realize you did not
Table of Contents. The RCS MINI HOWTO
Table of Contents The RCS MINI HOWTO...1 Robert Kiesling...1 1. Overview of RCS...1 2. System requirements...1 3. Compiling RCS from Source...1 4. Creating and maintaining archives...1 5. ci(1) and co(1)...1
Git Basics. Christian Hanser. Institute for Applied Information Processing and Communications Graz University of Technology. 6.
Git Basics Christian Hanser Institute for Applied Information Processing and Communications Graz University of Technology 6. March 2013 Christian Hanser 6. March 2013 Seite 1/39 Outline Learning Targets
Version control. with git and GitHub. Karl Broman. Biostatistics & Medical Informatics, UW Madison
Version control with git and GitHub Karl Broman Biostatistics & Medical Informatics, UW Madison kbroman.org github.com/kbroman @kwbroman Course web: kbroman.org/tools4rr Slides prepared with Sam Younkin
Introducing Xcode Source Control
APPENDIX A Introducing Xcode Source Control What You ll Learn in This Appendix: u The source control features offered in Xcode u The language of source control systems u How to connect to remote Subversion
Two Best Practices for Scientific Computing
Two Best Practices for Scientific Computing Version Control Systems & Automated Code Testing David Love Software Interest Group University of Arizona February 18, 2013 How This Talk Happened Applied alumnus,
Software configuration management
Software Engineering Theory Software configuration management Lena Buffoni/ Kristian Sandahl Department of Computer and Information Science 2015-09-30 2 Maintenance Requirements System Design (Architecture,
SOFTWARE DEVELOPMENT BASICS SED
SOFTWARE DEVELOPMENT BASICS SED Centre de recherche Lille Nord Europe 16 DÉCEMBRE 2011 SUMMARY 1. Inria Forge 2. Build Process of Software 3. Software Testing 4. Continuous Integration 16 DECEMBRE 2011-2
Software Configuration Management and Continuous Integration
1 Chapter 1 Software Configuration Management and Continuous Integration Matthias Molitor, 1856389 Reaching and maintaining a high quality level is essential for each today s software project. To accomplish
Derived from Chris Cannam's original at, https://code.soundsoftware.ac.uk/projects/easyhg/wiki/sc2012bootcamppl an.
Version Control Key Points ========================== Mike Jackson, The Software Sustainability Institute. This work is licensed under the Creative Commons Attribution License. Copyright (c) Software Carpentry
Git. A Distributed Version Control System. Carlos García Campos [email protected]
Git A Distributed Version Control System Carlos García Campos [email protected] Carlos García Campos [email protected] - Git 1 A couple of Quotes For the first 10 years of kernel maintenance, we literally
Version Control with Mercurial and SSH
Version Control with Mercurial and SSH Lasse Kliemann [email protected] Vorkurs Informatik 2010 Wishlist While working on a project, it is nice to... be able to switch back to older versions of
Version Control. Version Control
Version Control CS440 Introduction to Software Engineering 2013, 2015 John Bell Based on slides prepared by Jason Leigh for CS 340 University of Illinois at Chicago Version Control Incredibly important
Mercurial. Why version control (Single users)
Mercurial Author: Hans Fangohr Date: 2008-05-21 Version: 033c85b22987 Id: talk.txt,v 033c85b22987 2008/05/21 08:42:42 fangohr Series: SESA2006 2008, last lecture Hint Adjust font-size
Distributed Version Control
Distributed Version Control Faisal Tameesh April 3 rd, 2015 Executive Summary Version control is a cornerstone of modern software development. As opposed to the centralized, client-server architecture
using version control in system administration
LUKE KANIES using version control in system administration Luke Kanies runs Reductive Labs (http://reductivelabs.com), a startup producing OSS software for centralized, automated server administration.
Content. Development Tools 2(63)
Development Tools Content Project management and build, Maven Version control, Git Code coverage, JaCoCo Profiling, NetBeans Static Analyzer, NetBeans Continuous integration, Hudson Development Tools 2(63)
Version Control Tutorial using TortoiseSVN and. TortoiseGit
Version Control Tutorial using TortoiseSVN and TortoiseGit Christopher J. Roy, Associate Professor Virginia Tech, [email protected] This tutorial can be found at: www.aoe.vt.edu/people/webpages/cjroy/software-resources/tortoise-svn-git-tutorial.pdf
Modulo II Software Configuration Management - SCM
Modulo II Software Configuration Management - SCM Professor Ismael H F Santos [email protected] April 05 Prof. Ismael H. F. Santos - [email protected] 1 Bibliografia Introduction to Apache
PKI, Git and SVN. Adam Young. Presented by. Senior Software Engineer, Red Hat. License Licensed under http://creativecommons.org/licenses/by/3.
PKI, Git and SVN Presented by Adam Young Senior Software Engineer, Red Hat License Licensed under http://creativecommons.org/licenses/by/3.0/ Agenda Why git Getting started Branches Commits Why? Saved
MATLAB & Git Versioning: The Very Basics
1 MATLAB & Git Versioning: The Very Basics basic guide for using git (command line) in the development of MATLAB code (windows) The information for this small guide was taken from the following websites:
Introduction to the Git Version Control System
Introduction to the Sebastian Rockel [email protected] University of Hamburg Faculty of Mathematics, Informatics and Natural Sciences Department of Informatics Technical Aspects of Multimodal
Introduc)on to Version Control with Git. Pradeep Sivakumar, PhD Sr. Computa5onal Specialist Research Compu5ng, NUIT
Introduc)on to Version Control with Git Pradeep Sivakumar, PhD Sr. Computa5onal Specialist Research Compu5ng, NUIT Contents 1. What is Version Control? 2. Why use Version control? 3. What is Git? 4. Create
Version Control Script
Version Control Script Mike Jackson, The Software Sustainability Institute Things you should do are written in bold. Suggested dialog is in normal text. Command- line excerpts and code fragments are in
RANCID and CVS. PacNOG 6 Nadi, Fiji
RANCID and CVS PacNOG 6 Nadi, Fiji Overview what is CVS? Version Control Systems: CVS Mercurial RCS Subversion RANCID works with CVS to as a version control system for network hardware configurations.
Software Configuration Management. Slides derived from Dr. Sara Stoecklin s notes and various web sources.
Software Configuration Management Slides derived from Dr. Sara Stoecklin s notes and various web sources. What is SCM? SCM goals Manage the changes to documents, programs, files, etc. Track history Identify
Pro Git. Scott Chacon * 2010-08-02
Pro Git Scott Chacon * 2010-08-02 * This is the PDF file for the Pro Git book contents. It is licensed under the Creative Commons Attribution-Non Commercial-Share Alike 3.0 license. I hope you enjoy it,
Software Delivery Integration and Source Code Management. for Suppliers
Software Delivery Integration and Source Code Management for Suppliers Document Information Author Version 1.0 Version Date 8/6/2012 Status final Approved by Reference not applicable Subversion_for_suppliers.doc
Version Control using Git and Github. Joseph Rivera
Version Control using Git and Github Joseph Rivera 1 What is Version Control? Powerful development tool! Management of additions, deletions, and modifications to software/source code or more generally
Introduction to Software Engineering (2+1 SWS) Winter Term 2009 / 2010 Dr. Michael Eichberg Vertretungsprofessur Software Engineering Department of
Introduction to Software Engineering (2+1 SWS) Winter Term 2009 / 2010 Dr. Michael Eichberg Vertretungsprofessur Software Engineering Department of Computer Science Technische Universität Darmstadt Dr.
MATLAB @ Work. MATLAB Source Control Using Git
MATLAB @ Work MATLAB Source Control Using Git Richard Johnson Using source control is a key practice for professional programmers. If you have ever broken a program with a lot of editing changes, you can
Using SVN to Manage Source RTL
Using SVN to Manage Source RTL CS250 Tutorial 1 (Version 092509a) September 25, 2009 Yunsup Lee In this tutorial you will gain experience using the Subversion (SVN) to manage your source RTL and code.
Lab 2 : Basic File Server. Introduction
Lab 2 : Basic File Server Introduction In this lab, you will start your file system implementation by getting the following FUSE operations to work: CREATE/MKNOD, LOOKUP, and READDIR SETATTR, WRITE and
Version Control with Subversion
Version Control with Subversion http://www.oit.duke.edu/scsc/ http://wiki.duke.edu/display/scsc [email protected] John Pormann, Ph.D. [email protected] Software Carpentry Courseware This is a re-work from the
Managing Software Projects Like a Boss with Subversion and Trac
Managing Software Projects Like a Boss with Subversion and Trac Beau Adkins CEO, Light Point Security lightpointsecurity.com [email protected] 2 Introduction... 4 Setting Up Your Server...
SVN Starter s Guide Compiled by Pearl Guterman June 2005
SVN Starter s Guide Compiled by Pearl Guterman June 2005 SV Table of Contents 1) What is SVN?... 1 2) SVN Architecture... 2 3) Creating a Working Copy... 3 4) Basic Work Cycle... 4 5) Status Symbols...
Version Control Using Subversion. Version Control Using Subversion 1 / 27
Version Control Using Subversion Version Control Using Subversion 1 / 27 What Is Version Control? Version control is also known as revision control. Version control is provided by a version control system
Software Development and Collaboration: Version Control Systems and Other Approaches
Software Development and Collaboration: Version Control Systems and Other Approaches Jose Antonio Escobar García Technische Universität Berlin [email protected] May, 2011 Abstract In the current context
Subversion. Nadir SOUALEM. Linux Users subversion client svn 1.6.5 or higher. Windows users subversion client Tortoise 1.6.
Subversion Nadir SOUALEM 1 Requirements Linux Users subversion client svn 1.6.5 or higher Windows users subversion client Tortoise 1.6.6 or higher 2 What is Subversion? Source control or version control
Dalhousie University CSCI 2132 Software Development Winter 2015 Lab 7, March 11
Dalhousie University CSCI 2132 Software Development Winter 2015 Lab 7, March 11 In this lab, you will first learn how to use pointers to print memory addresses of variables. After that, you will learn
Git - Working with Remote Repositories
Git - Working with Remote Repositories Handout New Concepts Working with remote Git repositories including setting up remote repositories, cloning remote repositories, and keeping local repositories in-sync
Using SVN to Manage Source RTL
Using SVN to Manage Source RTL CS250 Tutorial 1 (Version 083010a) August 30, 2010 Yunsup Lee In this tutorial you will gain experience using the Subversion (SVN) to manage your source RTL and code. You
Working with a Version Control System
Working with a Version Control System Summary Tutorial TU0114 (v2.4) March 18, 2008 This tutorial looks at how you can use Altium Designer s built-in version control capabilities to check project files
An Introduction to Git Version Control for SAS Programmers
ABSTRACT An Introduction to Git Version Control for SAS Programmers Stephen Philp, Pelican Programming, Redondo Beach, CA Traditionally version control has been in the domain of the enterprise: either
Introduction to Version Control with Git
Introduction to Version Control with Git Dark Cosmology Centre Niels Bohr Institute License All images adapted from Pro Git by Scott Chacon and released under license Creative Commons BY-NC-SA 3.0. See
Advanced Computing Tools for Applied Research Chapter 4. Version control
Advanced Computing Tools for Applied Research Jaime Boal Martín-Larrauri Rafael Palacios Hielscher Academic year 2014/2015 1 Version control fundamentals 2 What you probably do now Manually save copies
Setting up a local working copy with SVN, MAMP and rsync. Agentic - 2009
Setting up a local working copy with SVN, MAMP and rsync Agentic - 2009 Get MAMP You can download MAMP for MAC at this address : http://www.mamp.info/en/downloads/index.html Install MAMP in your APPLICATION
How to set up SQL Source Control. The short guide for evaluators
How to set up SQL Source Control The short guide for evaluators Content Introduction Team Foundation Server & Subversion setup Git setup Setup without a source control system Making your first commit Committing
CS 103 Lab Linux and Virtual Machines
1 Introduction In this lab you will login to your Linux VM and write your first C/C++ program, compile it, and then execute it. 2 What you will learn In this lab you will learn the basic commands and navigation
