Version Control Systems - ArabNet Beirut 2014 - Dani ArnaoutDani Arnaout
?
This is the presentation that was given at ArabNet Beirut 2014. It cover some basic & intermediate info about Version Control Systems in a simple & special way.
It includes lots of images & just few text, so you won't be able to fully understand what's going on unless you watched the talk.
Will add a link to the talk once it becomes available.
Provides an absolute beginner\'s guide to how version control works, why you should switch and how to get started. Note that this presentation was for Design 4 Drupal, so it is angled towards Drupal themers.
An introduction to Version Control SystemsJon Warbrick
?
Version control systems allow users to track changes to documents and code over time, maintain revision histories, and collaborate on projects. They provide features like check-outs that allow editing working copies, commits to save changes to repositories, diffs to view differences between versions, and merging of changes from multiple branches. Version control is well-suited for software source code management and collaborative work, but not as effective for tasks like bug tracking or large media files.
This document provides an introduction to version control. It discusses what version control is, the history and evolution of version control systems, different types of version control systems classified by their repository model and concurrency model, and practical considerations for starting to use version control. Key topics covered include centralized and distributed version control, lock-modify-unlock and merge models, and domain vocabulary for common version control tasks and workflows.
The everyday developer's guide to version control with GitE Carter
?
Git is a distributed version control system that allows developers to track changes in source code. It provides tools to commit changes locally, branch code for parallel development, and collaborate remotely by pushing and pulling changes from a shared repository. Common Git commands include init to create a repository, add and commit to save changes locally, checkout to switch branches, pull to retrieve remote changes, and push to upload local changes. Git helps developers work efficiently by enabling features like branching, undoing mistakes, and viewing the revision history.
A brief introduction to version control systemsTim Staley
?
This is a lunchtime talk I gave to the Southampton astronomy department. The aim was to make them aware of version control systems and when they might need to use them.
With these slides we introduce the concept of source control and teach the core features to using Git, GitHub and BitBucket. You can find the accompanying video here. https://youtu.be/lZpNrCgGvuI
What is version control software and why do you need it?Leonid Mamchenkov
?
Version control software (VCS) manages changes to files such as documents, images, and code. It allows users to undo changes, try ideas, collaborate, and troubleshoot. VCS originated from engineering blueprints and software development in the early UNIX days. It works by storing revisions in a repository with branches and tags. Git is the most commonly used VCS as it is free, distributed, fast, and the standard for open source projects. Users can get started by installing Git, configuring user information, initializing repositories for projects, and committing file changes with descriptive messages.
This document provides an overview of version control using Subversion (SVN). It discusses key SVN concepts like the trunk, branches, and tags. It explains how SVN allows for collaboration between developers and management of code revisions. The document also summarizes SVN features like authentication, revision management, tagging for releases, and advanced topics like hooks and externals.
Version control is a method for centrally storing files and keeping a record of changes made by developers. It allows tracking who made what changes and when. This allows developers to back up their work, track different versions of files, merge changes from multiple developers, and recover old versions if needed. Centralized version control systems like Subversion store all files in a central repository that developers check files out from and check changes back into. Subversion allows viewing changes between versions, rolling back changes, and recovering old project versions with a single version number across all files.
A simple introduction for basic use of git and git hub.
Since I'm a rookie to Git, If there is anything wrong, please contact me.
Hope you'll enjoy it.
This document provides an introduction to version control. It discusses what version control is, the history and evolution of version control systems, different types of version control systems classified by their repository model and concurrency model, and practical considerations for starting to use version control. Key topics covered include centralized and distributed version control, lock-modify-unlock and merge models, and domain vocabulary for common version control tasks and workflows.
The everyday developer's guide to version control with GitE Carter
?
Git is a distributed version control system that allows developers to track changes in source code. It provides tools to commit changes locally, branch code for parallel development, and collaborate remotely by pushing and pulling changes from a shared repository. Common Git commands include init to create a repository, add and commit to save changes locally, checkout to switch branches, pull to retrieve remote changes, and push to upload local changes. Git helps developers work efficiently by enabling features like branching, undoing mistakes, and viewing the revision history.
A brief introduction to version control systemsTim Staley
?
This is a lunchtime talk I gave to the Southampton astronomy department. The aim was to make them aware of version control systems and when they might need to use them.
With these slides we introduce the concept of source control and teach the core features to using Git, GitHub and BitBucket. You can find the accompanying video here. https://youtu.be/lZpNrCgGvuI
What is version control software and why do you need it?Leonid Mamchenkov
?
Version control software (VCS) manages changes to files such as documents, images, and code. It allows users to undo changes, try ideas, collaborate, and troubleshoot. VCS originated from engineering blueprints and software development in the early UNIX days. It works by storing revisions in a repository with branches and tags. Git is the most commonly used VCS as it is free, distributed, fast, and the standard for open source projects. Users can get started by installing Git, configuring user information, initializing repositories for projects, and committing file changes with descriptive messages.
This document provides an overview of version control using Subversion (SVN). It discusses key SVN concepts like the trunk, branches, and tags. It explains how SVN allows for collaboration between developers and management of code revisions. The document also summarizes SVN features like authentication, revision management, tagging for releases, and advanced topics like hooks and externals.
Version control is a method for centrally storing files and keeping a record of changes made by developers. It allows tracking who made what changes and when. This allows developers to back up their work, track different versions of files, merge changes from multiple developers, and recover old versions if needed. Centralized version control systems like Subversion store all files in a central repository that developers check files out from and check changes back into. Subversion allows viewing changes between versions, rolling back changes, and recovering old project versions with a single version number across all files.
A simple introduction for basic use of git and git hub.
Since I'm a rookie to Git, If there is anything wrong, please contact me.
Hope you'll enjoy it.
Introduction to Version Control System for Windows
1. Version Control System
Appendix B of Introduction to C Programming
Author: Peter PH Chang
S
2. What is Version Control System?
S A.k.a. 版本控制系統
S 目的:
S 個人使用:
S 漸進式開發使用
S 怕自己改爛之後改不回去本來可以動的狀況
S 團隊開發:
S 方便大家共同看一份程式碼,有效協同開發
S 記錄是誰、在什麼時候、因為什麼原因改了那段程式碼
S Branch(分支)開發,讓支線不影響主線
3. Type of VCS
S Copy-Paste
S Centralized Version Control System
S Distributed Version Control System
4. Type of VCS
S Copy Paste
S The most easy way to implement
S Awful way
S No comment message
S Not automically
S Wasting space
S No conflict solution
S No duplicate for backup
S 不推薦使用此方法
5. VCS的流派
S Centralized VCS
S Easy to implement
S Learning curve is moderate
S Cannot develop without network
S Do everything by network. SLOW!
S There is only one server. If it is
broken, you loss everything
6. VCS的流派
S Distributed VCS
S Learning curve is steep
S Can work without network
S Everyone has its clone. Don’t worry
about server!
S Easy to branch!
7. Well-known VCS
S Centralized VCS
S CVS
S Subversion (SVN)
S Perforce
S Distributed VCS
S git
S Mercurial (Hg)
S Bazaar
9. 先來用用看
S 環境:MS Windows
S UNIX系列亦可使用,但請參考附錄文件
S 安裝
S msysgit
S Windows下git本體
S http://code.google.com/p/msysgit/downloads/list?q=net+installer
S TortoiseGit
S git的圖形化使用者介面
S http://code.google.com/p/tortoisegit/wiki/Download?tm=2
47. Another way: CLI
S 新建repo
S git init
S 新增檔案、呈交到repo
S git add .
S git commit –m “Commit message”
S 查看Git記錄
S git log
S 查看程式碼差異
S git diff 5d09
S git diff 5d09 ab01
49. GitHub
S 可自己架git server
S 在Linux、Mac上比較好架
S Windows上架git server較為複雜
S 但我們有GitHub!
S Easy to create public repo
S If you have .edu mail, you can get right to create private
repo for free during the two years
S https://github.com/edu
52. GitHub
S 複製一份下來!
S git clone REPO的網址
S 在TortoiseGit上,新增一個資料夾按右鍵,有個clone倉儲的
按鍵,按下去之後,把REPO的網址填入,即可自server複製
下來
S 和git server溝通的方式
S 自server上取得新的版本
S git pull
S 把改好的版本送上server
S git push