[PRAKTISCHE ASPEKTE DER INFORMATIK WS 13/14]
|
|
|
- Allan Porter
- 10 years ago
- Views:
Transcription
1 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.
2 Week G Versioning with svn What is Versioning? Different approaches Subversion (svn) workflow Basic svn commands Group assignments: Check in your proposals Week G Versioning with svn Imagine you are working on a very important university project, and your deadline is tomorrow. Your program is running quite smoothly, so you decide to implement a new, very cool feature that would make your program even more awesome. Around midnight, you realize it s not going to work as you expect. At 3 am you realize that your program does not run properly any more. At 5 am you realize your program does not run at all. At 6 am you start searching for the USB stick with the backup. At 7 am you find it, but realize the backup is more than a week old. At 8 am you have to leave for university. Another similar situation: You work with a bunch of friends on a program. Each of you is modifying your initial prototype by implementing a cool new feature. At some point you want to merge your version, an USB stick starts making its way around the busy programmers. People start realizing that there are inconsistencies among the versions. Some changes are merged, some are not. When you continue the project next day, nobody can remember which version is the most complete one and you start again from scratch. Some of you might have encountered these situations. The good news is that there exists a technical solution to these problems: Versioning tools. Versioning tools let you sync your data with other machines (sometimes peer-to-peer, sometimes in a client-server relationship). You can access the complete file version history, so you can, e.g., access the state of the project from last night. You can 2 PADI Praktische Aspekte der Informatik
3 merge your modifications with modifications made by other people, and you can get (some) assistance, when there are conflicting versions of files. As always, there are several possibilities. The most naïve would be to simply put up an FTP server and to upload all changes to the server. There are also more mature solutions; today, we will get to know a program called subversion (or svn ), that works in a strict client-server model but has several advantages over the simple FTP solution, as we will see. 3 PADI Praktische Aspekte der Informatik
4 svn basics A simple server (e.g. ftp) SVN basics These are examples from the freely available book Version Control with Subversion: I recommend to read Chapter 1 and Chapter 2. You can use svn via the console or using a GUI client. For Windows, a good GUI client is Tortoise svn ( Eclipse also has a svn plugin. When working with Linux, rapidsvn is an option. As mentioned before, the simplest approach would be to set up an FTP server. Every time a change is made to a file, the user has to upload the file to the server. This approach has several disadvantagess: If the users do not check if other users made changes, they may accidently overwrite previously submitted data. In addition, no history of the files is kept. 4 PADI Praktische Aspekte der Informatik
5 svn basics lock-modify-unlock One possible solution would be to use locks: If a user intends to work on a file, he locks it and unlocks it after the changes are submitted to the server. This prevents accidental overwrites. On the other hand, other users may have to wait for a very long time to get a lock on a file. It may also happen that one user has a lock on MyClass.h while another user has a lock on MyClass.cpp. It is quite probable that neither of them can continue to work if the other one unlocks one of the files. 5 PADI Praktische Aspekte der Informatik
6 svn basics copy-modify-merge (1/2) With svn, a copy-modify-merge scheme is used. Everyone is working on a local copy of the repository. Users may at any time commit changes to the repository. The repository keeps track of the files and their versions. If a user commits a file that has been changed previously by another user, the two versions are checked for conflicts. If the changes happened in different parts of the document, the files can be automatically changed. If the conflict cannot be resolved automatically, it has to be resolved by the user. The user receives the concurring versions and can resolve the conflict locally, before the file is submitted to the server. 6 PADI Praktische Aspekte der Informatik
7 svn basics copy-modify-merge (2/2) 7 PADI Praktische Aspekte der Informatik
8 svn basics benefits Global revision numbers No serialization (parallel editing) Offline editing Merging works most of the time But: Requires disciplined workflow and maintenance! One nice benefit of svn is the unique number each revision has. If your project has reached a certain state (e.g. a specific milestone), these revisions can be tagged. You can always roll back the code to a given revision. This comes in very handy when you try to track down a bug that somehow slipped into your code. You can also display the differences between the files of your current working copy and the ones on the svn. One word of warning: Your problems do not magically disappear when you use svn. You have to keep a disciplined workflow. That means that you should try to keep your local copy in sync with the server, that you resolve conflicts properly and do not commit files that other s will not need. 8 PADI Praktische Aspekte der Informatik
9 svn workflow 1. Update your working copy and make sure everything works properly svn update or svn checkout (initial checkout) 2. Make changes. svn add, svn delete, svn copy, svn move 3. Examine your changes. svn status, svn diff 4. Possibly undo some changes. svn revert Initially, 5. Resolve you check conflicts out a (merge project others' with the changes). svn checkout command: svn checkout svn://[email protected]/public/padi/ svn update, svn resolve The current project is downloaded on your machine. You may now work on your project. E.g., you create 6. a Commit file called your main.cpp. changes. At the end of your work session you should type svn svn commit add main.cpp svn commit main.cpp A text dialog may now show up where you can type in a commit message, which is quite useful. If you are working with several people on the same files, you should type svn status svn update before resuming work. By doing this, you ensure that your working copy is in sync with the repository 9 PADI Praktische Aspekte der Informatik
10 svn commands - update $ svn update Basic Usage 19 U foo.c U bar.c Updated to revision 2. For bug hunting it is very useful to check out old revisions with the -revision [revision-number] option! The svn update command tells you which alterations have been (compared to your local copy). Files may have been added, deleted, updated or are in conflict. It also tells you the current revision number. 10 PADI Praktische Aspekte der Informatik
11 svn commands - modifying svn add foo svn delete foo svn copy foo bar svn move foo bar svn mkdir blort 11 PADI Praktische Aspekte der Informatik
12 svn commands - status $ svn status? scratch.c # file is not under version control A stuff/loot/bloo.h # file is scheduled for addition C stuff/loot/lump.c # file has conflicts from an update D stuff/fish.c # file is scheduled for deletion M bar.c # the content has local modifications With svn status you can check the status of all local files compared to the repository on the server. 12 PADI Praktische Aspekte der Informatik
13 svn commands log and diff $ svn log r3 sally :09: (15 May 2008) 1 line Added include lines and corrected # of cheese slices. $ svn diff Index: bar.c =========================================================== ==== --- bar.c (revision 3) +++ bar.c (working -1,7 +#include <sys/types.h> +#include <sys/stat.h> +#include <unistd.h> + +#include <stdio.h> int main(void) { - printf("sixty-four slices of American Cheese...\n"); + printf("sixty-five slices of American Cheese...\n"); return 0; 13 PADI Praktische Aspekte der Informatik
14 svn commands resolving conflicts A conflicting file looks like this $ cat sandwich.txt Top piece of bread Mayonnaise Lettuce Tomato Provolone <<<<<<<.mine Salami Mortadella Prosciutto ======= Sauerkraut Grilled Chicken >>>>>>>.r2 Creole Mustard Bottom piece of bread Every time there is a conflict, the file is modified in a way that you see the conflicting text passages. The file sandwich.txt has been modified in revision 2: Sauerkraut and Grilled Cheese have been added. The local copy has local modifications at the same location (Salami, Mortadella and Prosciutto). You can remove the conflict by deciding how to merge the changes and deleting the extra symbols (<<<<<<<, ========, >>>>>>>>>) 14 PADI Praktische Aspekte der Informatik
15 svn commands resolving conflicts All relevant file versions are saved on your disk: $ ls -1 sandwich.txt sandwich.txt.mine sandwich.txt.r1 sandwich.txt.r2 In the case of a conflict, all relevant versions of the file are stored on your local copy. The conflicting one (sandwich.txt), your locally modified one (sandwich.txt.mine), the last revision that did not conflict (sandwich.txt.r1) and the current version on the server (sandwich.txt.r2). 15 PADI Praktische Aspekte der Informatik
16 svn commands resolving conflicts You have the following options: $ svn resolve --accept theirs-full sandwich.txt Choose this option, to replace your file with the one from the current revision completely $ svn resolve --accept working sandwich.txt Choose this if you corrected the conflict by hand $ svn resolve --accept mine-full sandwich.txt Choose this if your changes are correct $ svn resolve --accept base sandwich.txt Choose this to revert to the last modified revision you checked out (in his example revision 1). It is also a good idea to clean up the temporary files *.r* and *.mine afterwards (if not automatically done by your svn application) After you decided what to do, you can use the svn resolve command. Alternatively, you can erase all files except the original sandwich.txt and commit this one. 16 PADI Praktische Aspekte der Informatik
17 svn commands commit $ svn commit -m "Corrected number of cheese slices." Sending sandwich.txt Transmitting file data. Committed revision PADI Praktische Aspekte der Informatik
18 PADI announcement If you signed up for PADI, you do have a svn account and may check out your project: svn checkout svn://[email protected]/public/padi/yourname/ If you make changes to your proposal, edited them directly in the svn! If you don t get your svn username and password yet, send me a mail! 18 PADI Praktische Aspekte der Informatik
19 Assignment G: SVN This week s assignment will be mandatory! So please do it. Task 1: Commit your project proposal [50 points] Check out your own project s directory: svn checkout svn://elara.cg.cs.tu-bs.de/public/padi/yourname/ Copy your proposal (named proposal.txt) into this directory. Make sure your proposal contains your name and the Matrikelnummer. Type svn add proposal.txt svn commit m proposal added Task 2: Modify the projects.txt list [50 points] Check out the directory svn checkout svn://elara.cg.cs.tu-bs.de/public/padi/common/ There should be a file called projects.txt. It contains a list with all projects and current states. Please add your project information to the file, so I know who is still working on his/her project. Please update the state of your project in this file regularly. If you cancel your project for some reason, please write cancelled as current state. Commit the file with your changes. 19 PADI Praktische Aspekte der Informatik
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
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 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 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
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 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
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 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
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! 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
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
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
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
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
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
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
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.
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
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
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
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 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
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
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
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
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
CSCB07 Software Design Version Control
CSCB07 Software Design Version Control Anya Tafliovich Fall 2015 Problem I: Working Solo How do you keep track of changes to your program? Option 1: Don t bother Hope you get it right the first time Hope
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
Zoom Plug-ins for Adobe
= Zoom Plug-ins for Adobe User Guide Copyright 2010 Evolphin Software. All rights reserved. Table of Contents Table of Contents Chapter 1 Preface... 4 1.1 Document Revision... 4 1.2 Audience... 4 1.3 Pre-requisite...
QlikView 11 Source Control Walkthrough
QlikView 11 Source Control Walkthrough A QlikView Technology White Paper Originally published: August, 2011 Updated August, 2012 www.qlikview.com 1 Table of Contents BACKGROUND... 3 SOURCE CONTROL BASICS...
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
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,
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.
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
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...
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
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
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
INSTALLATION GUIDE Datapolis Process System v 4.2.0.4294
Datapolis.com, ul Wiktorska 63, 02-587 Warsaw, Poland tel. (+48 22) 398-37-53; fax. (+ 48 22) 398-37-93, [email protected] INSTALLATION GUIDE Datapolis Process System v 4.2.0.4294 Last modification
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:
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
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.
1. Product Information
ORIXCLOUD BACKUP CLIENT USER MANUAL LINUX 1. Product Information Product: Orixcloud Backup Client for Linux Version: 4.1.7 1.1 System Requirements Linux (RedHat, SuSE, Debian and Debian based systems such
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
Online Backup Client User Manual Linux
Online Backup Client User Manual Linux 1. Product Information Product: Online Backup Client for Linux Version: 4.1.7 1.1 System Requirements Operating System Linux (RedHat, SuSE, Debian and Debian based
Editing Locally and Using SFTP: the FileZilla-Sublime-Terminal Flow
Editing Locally and Using SFTP: the FileZilla-Sublime-Terminal Flow Matthew Salim, 20 May 2016 This guide focuses on effective and efficient offline editing on Sublime Text. The key is to use SFTP for
How To Run A Hello World On Android 4.3.3 (Jdk) On A Microsoft Ds.Io (Windows) Or Android 2.7.3 Or Android 3.5.3 On A Pc Or Android 4 (
Developing Android applications in Windows Below you will find information about the components needed for developing Android applications and other (optional) software needed to connect to the institution
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
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
Anchor End-User Guide
Table of Contents How to Access Your Account How to Upload Files How to Download the Desktop Sync Folder Sync Folder How to Share a File 3 rd Party Share from Web UI 3 rd Party Share from Sync Folder Team-Share
Source Control Guide: Git
MadCap Software Source Control Guide: Git Flare 11.1 Copyright 2015 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this
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
RecoveryVault Express Client User Manual
For Linux distributions Software version 4.1.7 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by
Version Control Using Subversion. 12 May 2013 OSU CSE 1
Version Control Using Subversion 12 May 2013 OSU CSE 1 Version Control In team projects, software engineers: Share and extend a common code base (and comply with standards, coding conventions, comment
Online Backup Client User Manual
Online Backup Client User Manual Software version 3.21 For Linux distributions January 2011 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have
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
Online Backup Linux Client User Manual
Online Backup Linux Client User Manual Software version 4.0.x For Linux distributions August 2011 Version 1.0 Disclaimer This document is compiled with the greatest possible care. However, errors might
Bootstrap guide for the File Station
Bootstrap guide for the File Station Introduction Through the File Server it is possible to store files and create automated backups on a reliable, redundant storage system. NOTE: this guide considers
Online Backup Client User Manual
For Linux distributions Software version 4.1.7 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by
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
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 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
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
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?
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
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
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
Introduction to Programming Tools. Anjana & Shankar September,2010
Introduction to Programming Tools Anjana & Shankar September,2010 Contents Essentials tooling concepts in S/W development Build system Version Control System Testing Tools Continuous Integration Issue
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
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
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
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
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
Polycom CMA System Upgrade Guide
Polycom CMA System Upgrade Guide 5.0 May 2010 3725-77606-001C Trademark Information Polycom, the Polycom Triangles logo, and the names and marks associated with Polycom s products are trademarks and/or
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
SourceAnywhere Service Configurator can be launched from Start -> All Programs -> Dynamsoft SourceAnywhere Server.
Contents For Administrators... 3 Set up SourceAnywhere... 3 SourceAnywhere Service Configurator... 3 Start Service... 3 IP & Port... 3 SQL Connection... 4 SourceAnywhere Server Manager... 4 Add User...
Xcode Source Management Guide. (Legacy)
Xcode Source Management Guide (Legacy) Contents Introduction 5 Organization of This Document 5 See Also 6 Source Management Overview 7 Source Control Essentials 7 Snapshots 8 Managing Source in Xcode 8
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
Online Backup Client User Manual Mac OS
Online Backup Client User Manual Mac OS 1. Product Information Product: Online Backup Client for Mac OS X Version: 4.1.7 1.1 System Requirements Operating System Mac OS X Leopard (10.5.0 and higher) (PPC
Online Backup Client User Manual Mac OS
Online Backup Client User Manual Mac OS 1. Product Information Product: Online Backup Client for Mac OS X Version: 4.1.7 1.1 System Requirements Operating System Mac OS X Leopard (10.5.0 and higher) (PPC
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
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
