Version Control with Subversion
|
|
|
- Ronald Jefferson
- 9 years ago
- Views:
Transcription
1 Version Control with Subversion
2 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 Source Control System or Source Code Management) is the art and science of managing information, which for software projects implies managing files and directories over time. A repository manages all your files and directories. The repository is much like an ordinary file server, except that it remembers every change ever made to your files and directories. This allows you to recover older versions of your data, or examine the history of how your data changed.
3 Comparison of some open-source version control systems RCS (Revision Control System). Simple, text based system. Included in Linux and Unix systems by default. No remote access. No directory level access. CVS (Concurrent Versioning System). Built on top of RCS. Adds directory level access as well as remote access. Subversion. A modern CVS replacement that isn t built on top of RCS. Allows directory access, web access (via an Apache Web server module), remote access (via ssh or svn server). Uses a centralized model with mulitple access-control possibilities. Git. A distributed version control system. There is no central repository like in subversion. Everyone has a copy of the repository. More complex model to learn. Useful for parallel, largely shared but permanently somewhat different lines of the same project.
4 Subversion Features Subversion allows you to attach metadata to an item. Metadata takes the form of properties. A property is a key/value pair. Properties are versioned as well. Subversion has a client/server architecture. A developer interacts with a client program, which communicates with a server program, which accesses repositories. A repository contains the versions of your items. Multiple clients, communication protocols, repository-access mechanisms, and repository formats are available. Repository formats: Berkeley Database and FSFS (preferred and default).
5 Subversion Architecture
6 Versioning Models The core mission of a version control system is to enable collaborative editing and sharing of data. But different systems use different strategies to achieve this. The Lock-Modify-Unlock Solution. The repository allows only one person to change a file at a time. To change a file, one must first obtain a lock. After you store the modified file back in the repository, then we unlock the file. Example: RCS. The Copy-Modify-Merge Solution. 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 in parallel, 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. Example: CVS, Subversion. However CVS and subversion still also support locking if it is needed. Typically locking is used for non-text files.
7 Downloading/Installing Subversion We have subversion 1.6.x available in the lab on all workstations. On Fedora Linux, check the version with the command: rpm -qa grep subversion If not using version 1.6 or newer, then get it using yum as follows: yum -y update subversion* mod dav svn* For other versions of Linux, check out the subversion website for downloads. (Subversion website: You can also download the source code from subversion.tigris.org and compile it directly.
8 Creating and Populating a Repository This is an administrative task. A developer would not normally need to do this. svnadmin create ~/svn cd ~/cs453 mkdir -p project1/branches project1/tags project1/trunk gvim project1/trunk/hello.c svn import project1 \ svn+ssh://hostname/home/svn/project1 -m "import the project" Here HOSTNAME is the Internet name of the server and HOME is the full path to your home directory on the server. Also, if your local user name is different than your user name on the server, you will need to use username@hostname. The branches, tags, and trunk directories are a convention. They are not required (but highly recommended). Repository layouts: Vanilla, Strawberry or Chocolate! A single repository with all projects folders in it. Separate repository for each project. A handful of repositories, each with multiple related projects.
9 Access Mechanisms Schema file:/// svn:// svn+ssh:// Access Method direct repository access (on local disk) access via WebDAV protocol to Subversion-aware Apache server same as but with SSL encryption. access via custom protocol to an svnserve server same as svn://, but encrypted via an SSH tunnel. To be able to use svn+ssh:// conveniently, you will need to setup automatic login with ssh. Here is how to set that up. Look in your ~/.ssh directory on your local machine. There should be two files, id rsa and id rsa.pub. If not, create them using the command ssh-keygen -t rsa. Append your local id rsa.pub to the remote host s ~/.ssh/authorized keys. If the remote host doesn t have a ~/.ssh folder, then create one and then create the authorized keys file in it. Change the permissions on ~/.ssh/authorized keys using chmod 600 ~/.ssh/authorized keys
10 Checking-Out a Working Copy This is a development task. A working copy is a private workspace in which you can make changes. cd ~/cs453 svn checkout svn+ssh://hostname/home/svn/project1/trunk project1 Notes: The URL identifies the version to checkout. The last argument names the destination folder. Note that we are specifying trunk because we want to work on the main line of development. Do not use svn+ssh://hostname/home/svn/project1/ or you will be checking out all the branches as well!
11 Working on a Working Copy You can now change your working copy. Let s change hello.c and add a Makefile. cd project1 gvim hello.c # format nicely gvim Makefile svn add Makefile svn status -u svn diff svn commit -m "make it nice" gvim hello.c svn status -u svn diff svn commit -m "add stdio.h" Notes: The whole tree we check-in gets a new version number.
12 Subversion Properties Properties are name/value pairs associated with files. The names and values of the properties can be whatever you want them to be, with the constraint that the names must be human-readable text. And the best part about these properties is that they, too, are versioned, just like the textual contents of your files. Subversion Special Properties always start with the keyword svn:. An useful one is svn:keywords. Some keywords are Date, Revision, URL, Author, Id. Including the keywords as $keyword$ in your files allows Subversion to auto-magically expand them. cd ~/cs453/hw gvim hello.c # add Id and Revision keywords svn commit -m "Add svn id keywords" svn propset svn:keywords "Id Revision" hello.c svn diff svn commit -m "commit properties" gvim hello.c
13 Checking subversion version from your code Add the following to the top of your file. /* $Id$ */ static char *svnid = "$Id$"; Then, each time you commit subversion expands $Id$ to the subversion id. You need to set the property on the file for this to work as discussed in the previous slide. Note that the Rev or Id property only shows the last subversion revision number in which the current file was modified. It is not the same as the global revision number for the whole repository.
14 Incorporating global revision numbers To find the global revision number of a working copy, use the svnversion command. The following example shows how to automate this to include the version number in your code. ## ## on every build, record the working copy revision string ## svn_version.c: FORCE echo -n const char* svn_version(void) { const char* SVN_Version = " \ > svn_version.c svnversion -n. >> svn_version.c echo "; return SVN_Version; } >> svn_version.c FORCE: ## ## Then any executable that links in svn_version.o will be able ## to call the function svn_version() to get a string that ## describes exactly what revision was built.
15 Basic Work Cycle Get a working copy svn status (st) svn checkout (co) svn diff Update your working copy svn revert svn update (up) Merge others changes into your Make changes working copy gvim svn update (up) svn add svn resolved svn mkdir Commit your changes svn delete (rm) svn commit (ci) svn copy (cp) svn move (mv) Getting help on svn options. Examine your changes svn help commit
16 Changing repositories Sometimes we want to move our repository from one machine to another. First commit any changes from all working copies. Then pack up the repository as shown below and unpack it on the new server. tar czvf subversion.tar.gz subversion scp subversion.tar.gz newserver://newpath/ ssh newserver cd newpath tar xzvf subversion.tar.gz Now repoint your working copies to the new URL with the switch command. svn switch relocate OLD-URL NEW-URL The switch (without the relocate option) command can also be used to reflect changing the name of a repository.
17 Merges and Conflicts Suppose two people are working on the same file. cd project1 #add comment on top/bottom gvim hello.c svn commit -m "made some changes" svn checkout svn+ssh://hostname/home/svn/project1/trunk project2 cd project2 gvim hello.c # add comment on top/bottom svn commit -m "made some changes" ---fails due to conflict--- svn update gvim hello.c # fix conflict svn resolved program.c svn commit -m "made some changes"
18 Branches A developer typically wants to work on a task without interference from other people and without interfering with other people. A task may take days or weeks to complete. While working on task a developer should check-in intermediate versions, because: A repository typically resides on a high-quality storage device (e.g., RAID). A repository typically is backed-up carefully. A developer may want to work on different computers, on different network segments. The solution is to work on a branch. Subversion uses directories for branches. To Subversion, there is nothing special about a branch directory. When Subversion makes a copy, it is a cheap copy requiring a constant amount of space. When you change one of the copies, it really makes the copy. This technique is also called copy-on-write. Recall that our hello-world project directory had three subdirectories: branches, tags, and trunk. This is just a convention. The branches directory is for branches.
19 Branch Example svn copy svn+ssh://hostname/home/svn/project1/trunk \ svn+ssh://hostname/home/svn/project1/branches/mytask \ -m "a real big task" svn checkout svn+ssh://hostname/home/svn/project1/branches/mytask mytask cd mytask svn info
20 Merging from a Branch Now, we can work on our branch in isolation, checking-in our changes, for as long as we like. cd project1 gvim hello.c # add new function svn status -u svn diff svn ci -m "add new function" gvim hello.c # call it svn ci -m "call new function"
21 Merging from a Branch (contd.) Eventually, we may want to merge our changes from our branch back to the trunk, so others may benefit from them. svn co svn+ssh://hostname/home/svn/project1/trunk project1 cd project1 #what is the earliest revision on the branch? svn log --verbose --stop-on-copy \ svn+ssh://hostname/home/svn/project1/branches/mytask svn merge -r 8:10 svn+ssh://hostname/home/svn/project1/branches/mytask gvim project1.c #check merge result svn ci -m "merged -r 8:10 from mytask branch" svn info
22 Notes on Merging We created a trunk working copy, to merge to. We needed to determine, and specify, the starting and ending versions on our branch, so the right changes are merged. We merge from our branch, in the repository. We mention the merge versions in the check-in message, so we won t accidentally merge those changes again, if we keep working on my branch. Now, the trunk has our changes.
23 GUIs for Subversion There are many GUI tools available for subversion. However, I would recommend the following. Subclipse plugin. First, check if you already have the Subclipse plugin under Help Software Updates Manage Configuration. Otherwise go to for step-by-step instructions on how to install the Subclipse plugin from Eclipse. The installation of Subclispe plugin requires that you have write access to the folder that contains the Eclipse installation. TortoiseSVN is a nice stand-alone GUI for subversion that works for Linux and MS Windows.
24 Subclipse Plugin for Eclipse The subclipse plugin gives you most of the subversion functionality in Eclipse. We can use the SVN perspective to browse repositories. From there we can checkout a subversion project as an Eclipse project. Subclipse supports the and svn+ssh:// protocols but does not support the file:// protocol. A new menu Team gives you access to subversion commands from your project. All of the concepts we have covered can be accessed from the subclipse plugin except for the administrative commands. You can share a existing project in Eclipse using the menu items Team Share project... To share a projects, you need to know the URL of an existing repository.
25 References Homepage for the subversion project. Excellent book for subversion. Thanks to Jim Buffenbarger for providing me notes on subversion from his Software Engineering class. His notes/examples were used extensively in this document.
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
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
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
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
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
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 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
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
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
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
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.
Managing Source Code With Subversion
Managing Source Code With Subversion May 3rd, 2005: Linux Users Victoria Source Code Management Source Code Management systems (SCMs) rock. Definitely the single most useful tool for a development team,
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...
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,
Beginning with SubclipseSVN
Version 2 July 2007 Beginning with SubclipseSVN A user guide to begin using the Subclipse for source code management on the CropForge collaborative software development site. Copyright International Rice
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
INF 111 / CSE 121. Homework 4: Subversion Due Tuesday, July 14, 2009
Homework 4: Subversion Due Tuesday, July 14, 2009 Name : Student Number : Laboratory Time : Objectives Preamble Set up a Subversion repository on UNIX Use Eclipse as a Subversion client Subversion (SVN)
Ingeniørh. Version Control also known as Configuration Management
Ingeniørh rhøjskolen i Århus Version Control also known as Configuration Management Why version control? Teamwork You work in a team. You open a file and start work on it. Your colleague opens a file and
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! 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
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...
DAVE Usage with SVN. Presentation and Tutorial v 2.0. May, 2014
DAVE Usage with SVN Presentation and Tutorial v 2.0 May, 2014 Required DAVE Version Required DAVE version: v 3.1.6 or higher (recommend to use the most latest version, as of Feb 28, 2014, v 3.1.10) Required
Miguel A. Figueroa Villanueva Xabriel J. Collazo Mojica. ICOM 5047 Capstone Miguel A. Figueroa Villanueva University of Puerto Rico Mayagüez Campus
Document and Information Management: A Software Developer s Perspective Xabriel J. Collazo Mojica Outline Introduction Why should I (you) care? Document management CMS Wiki Aigaion Code and Document Repositories
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
LATEX Document Management with Subversion
The PracTEX Journal, 2007, No. 3 Article revision 2007/08/17 LATEX Document Management with Subversion Uwe Ziegenhagen Email Website Address Abstract [email protected] http://www.uweziegenhagen.de
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
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
Pragmatic Version Control
Extracted from: Pragmatic Version Control using Subversion, 2nd Edition This PDF file contains pages extracted from Pragmatic Version Control, one of the Pragmatic Starter Kit series of books for project
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
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
BlueJ Teamwork Tutorial
BlueJ Teamwork Tutorial Version 2.0 for BlueJ Version 2.5.0 (and 2.2.x) Bruce Quig, Davin McCall School of Engineering & IT, Deakin University Contents 1 OVERVIEW... 3 2 SETTING UP A REPOSITORY... 3 3
SVN Setup and Configuration Management
Configuration Management Each team should use the Subversion (SVN) repository located at https://svn-user.cse.msu.edu/user/cse435/f2014/ to provide version control for all project artifacts as
Version control tracks multiple versions. Configuration Management. Version Control. V22.0474-001 Software Engineering Lecture 12, Spring 2008
Configuration Management Version Control V22.0474-001 Software Engineering Lecture 12, Spring 2008 Clark Barrett, New York University Configuration Management refers to a set of procedures for managing
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.
Subversion workflow guide
Subversion workflow guide Joanne Carr January 2010 Contents 1 Before we start: some definitions, etc. 2 2 UKRmol-in repository layout 3 3 Checking out 3 4 Monitoring and dealing with
BlueJ Teamwork Repository Configuration
BlueJ Teamwork Repository Configuration Version 2.0 for BlueJ Version 2.5.0 (and 2.2.x) Davin McCall School of Engineering & IT, Deakin University 1 Introduction This document gives a brief description
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
UNIVERSITY OF CALIFORNIA Department of Electrical Engineering and Computer Sciences Computer Science Division. P. N. Hilfinger
UNIVERSITY OF CALIFORNIA Department of Electrical Engineering and Computer Sciences Computer Science Division CS 61B Fall 2012 P. N. Hilfinger Version Control and Homework Submission 1 Introduction Your
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
Version Control Systems
Version Control Systems ESA 2015/2016 Adam Belloum [email protected] Material Prepared by Eelco Schatborn Today IntroducGon to Version Control Systems Centralized Version Control Systems RCS CVS SVN
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.
Version control with Subversion
Version control with Subversion Davor Cubranic Grad Seminar October 6, 2011 With searching comes loss And the presence of absence: My Thesis not found. Version Control A tool for managing changes to a
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
Installing the JDeveloper Subversion VCS extension
A Developer's Guide for the JDeveloper Subversion VCS extension 10.1.3.0 July 2006 Contents Introduction Installing the JDeveloper Subversion VCS extension Connecting to a Subversion repository Importing
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
EAE-MS SCCAPI based Version Control System
EAE-MS SCCAPI based Version Control System This document is an implementation guide to use the EAE-MS SCCAPI based Version Control System as an alternative to the existing EAE Version Control System. The
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
How To Use An Orgsync With Anorgfusion Middleware
Oracle Fusion Middleware Developing Applications Using Continuous Integration 12c (12.1.2) E26997-02 February 2014 Describes how to build automation and continuous integration for applications that you
Apache Directory Studio. User's Guide
Apache Directory Studio User's Guide Apache Directory Studio: User's Guide Version 1.5.2.v20091211 Copyright 2006-2009 Apache Software Foundation Licensed to the Apache Software Foundation (ASF) under
SVNManager Installation. Documentation. Department of Public Health Erasmus MC University Medical Center
SVNManager Installation Documentation M. Verkerk Department of Public Health Erasmus MC University Medical Center Page 2 July 2005 Preface Version control in the context of this document is all about keeping
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
PxPlus Version Control System Using TortoiseSVN. Jane Raymond
PxPlus Version Control System Using TortoiseSVN Presented by: Jane Raymond Presentation Outline Basic installation and setup Checking in an application first time Checking out an application first time
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
Building OWASP ZAP Using Eclipse IDE
Building OWASP ZAP Using Eclipse IDE for Java Pen-Testers Author: Raul Siles (raul @ taddong.com) Taddong www.taddong.com Version: 1.0 Date: August 10, 2011 This brief guide details the process required
Introduction to Subversion
Introduction to Subversion Wendy Smoak Rob Richardson Desert Code Camp, October 2006 Wendy Smoak Sr. Systems Analyst, Arizona State University Web application development Systems and database administration
CS108, Stanford Handout #33. CVS in Eclipse
CS108, Stanford Handout #33 Winter, 2006-07 Nick Parlante CVS in Eclipse Source Control Any modern software project of any size uses "source control" Store all past revisions - Can see old versions, see
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
TortoiseSVN A Subversion client for Windows Version 1.5.5 Stefan Küng Lübbe Onken Simon Large
TortoiseSVN A Subversion client for Windows Version 1.5.5 Stefan Küng Lübbe Onken Simon Large TortoiseSVN: A Subversion client for Windows: Version 1.5.5 by Stefan Küng, Lübbe Onken, and Simon Large Published
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
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
CS 2112 Lab: Version Control
29 September 1 October, 2014 Version Control What is Version Control? You re emailing your project back and forth with your partner. An hour before the deadline, you and your partner both find different
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
Subversion, WebDAV, and Apache HTTP Server 2.0
Subversion, WebDAV, and Apache HTTP Server 2.0 Justin R. Erenkrantz University of California, Irvine [email protected] Slides: http://www.erenkrantz.com/oscon/ What is Subversion? Did you miss Subversion:
Linux Overview. Local facilities. Linux commands. The vi (gvim) editor
Linux Overview Local facilities Linux commands The vi (gvim) editor MobiLan This system consists of a number of laptop computers (Windows) connected to a wireless Local Area Network. You need to be careful
Source Code Management for Continuous Integration and Deployment. Version 1.0 DO NOT DISTRIBUTE
Source Code Management for Continuous Integration and Deployment Version 1.0 Copyright 2013, 2014 Amazon Web Services, Inc. and its affiliates. All rights reserved. This work may not be reproduced or redistributed,
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
Introduction to Source Control Management in OO 10
HP OO 10 OnBoarding Kit Community Assistance Team Introduction to Source Control Management in OO 10 HP Operations Orchestration 10 comes with an enhanced development model which is completely aligned
WinSCP PuTTY as an alternative to F-Secure July 11, 2006
WinSCP PuTTY as an alternative to F-Secure July 11, 2006 Brief Summary of this Document F-Secure SSH Client 5.4 Build 34 is currently the Berkeley Lab s standard SSH client. It consists of three integrated
TortoiseSVN A Subversion client for Windows Version 1.6.5 Stefan Küng Lübbe Onken Simon Large
TortoiseSVN A Subversion client for Windows Version 1.6.5 Stefan Küng Lübbe Onken Simon Large TortoiseSVN: A Subversion client for Windows: Version 1.6.5 by Stefan Küng, Lübbe Onken, and Simon Large Published
Automated Offsite Backup with rdiff-backup
Automated Offsite Backup with rdiff-backup Michael Greb 2003-10-21 Contents 1 Overview 2 1.1 Conventions Used........................................... 2 2 Setting up SSH 2 2.1 Generating SSH Keys........................................
Setting Up Scan to SMB on TaskALFA series MFP s.
Setting Up Scan to SMB on TaskALFA series MFP s. There are three steps necessary to set up a new Scan to SMB function button on the TaskALFA series color MFP. 1. A folder must be created on the PC and
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
Subversion Server for Windows
Subversion Server for Windows VisualSVN Team VisualSVN Server: Subversion Server for Windows VisualSVN Team Copyright 2005-2008 VisualSVN Team Windows is a registered trademark of Microsoft Corporation.
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
Manual. CollabNet Subversion Connector to HP Quality Center. Version 1.2
Manual CollabNet Subversion Connector to HP Quality Center Version 1.2 A BOUT THE CONNECTOR About the Connector The CollabNet Subversion Connector to HP Quality Center enables Quality Center users to
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:
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
[PRAKTISCHE ASPEKTE DER INFORMATIK WS 13/14]
2013/14 Institut für Computergraphik, TU Braunschweig Pablo Bauszat [PRAKTISCHE ASPEKTE DER INFORMATIK WS 13/14] All elemental steps that will get you started for your new life as a computer science programmer.
File Transfer Examples. Running commands on other computers and transferring files between computers
Running commands on other computers and transferring files between computers 1 1 Remote Login Login to remote computer and run programs on that computer Once logged in to remote computer, everything you
Subversion Integration for Visual Studio
Subversion Integration for Visual Studio VisualSVN Team VisualSVN: Subversion Integration for Visual Studio VisualSVN Team Copyright 2005-2008 VisualSVN Team Windows is a registered trademark of Microsoft
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 - 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
Shelter Pro Installation Guide. Overview. Database backups. Shelter Pro Installation Guide Page 1
Overview This document describes how to install Shelter Pro on Windows based computers (workstations) both in a standalone and a networked environment. Pick your installation scenario below and follow
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
1. Data Domain Pre-requisites. 2. Enabling OST
1. Data Domain Pre-requisites Before we begin to configure NetBackup, we need to verify the following:- Administrator rights and network access to the NetBackup master and media servers That the NetBackup
