美文网首页
版本控制1

版本控制1

作者: winnisz | 来源:发表于2017-03-07 17:18 被阅读0次

working copy : a local checked out copy of a repository

分支:you can do your work in the branch you created

tag : 创建一个主干的某个具体版本的快照

one approach :让每个开发人员在自身开发的分支中工作,定期合并每个人的个人改变到主干

another approach: 创建一个独立的分支为主要项目的新版本

It's just copying, mostly

To create a branch or tag, all you need to do is copy the entire trunk folder over to a new subfolder in the branches or tags folder. The easiest way to do this is to browse the repository (not the working copy) and make such a copy there. That way, Subversion can take care of the actual copying, instead of having to transfer the entire contents of the trunk to your local working copy and sending it back to the server again.

WebKit

Subversion 可以支持你去控制同一个项目的版本用命令行、svn客户机、Coda的Subversion集成和Xcode的综合Subversion支持。

When using our Versions Subversion client with 1.7 set as your default svn library, we will offer to update any working copies you access that are in older formats so you can use 1.7. This will make the working copy incompatible with Subversion 1.6 clients. Nothing will happen to your repository, but if you want to use the same working copy with several clients, make sure they all support using the same release of Subversion.

The big take-away here is to use the same Subversion version across all your servers and clients to avoid any headaches.

A branch or tag is simply a copy of the trunk, or in some cases another folder, in your Subversion repository. To create one, use the “Browse” view to navigate to the right place in your repository and drag the trunk of your project to the “branches” folder while holding down the “Option” key on your keyboard. When you drop the trunk, a dialog will open asking you to name your new tag or branch.

相关文章

  • 版本控制1

    working copy : a local checked out copy of a repository 分...

  • 用git进行版本控制_版本控制

    1、什么是版本控制 “版本控制”,倒过来读,,即“控制版本”!版本控制系统是帮助你控制(或管理)某个事物(通常是源...

  • Git 学习笔记之起步篇——相关知识简介

    1. 起步 1.1了解版本控制 Git 常用于版本控制,那么何为版本控制?版本控制——记录一个或若干个文件内容变化...

  • Git之版本控制

    一、版本控制 目录:浅谈发展历史、什么是版本控制、常见版本控制工具、版本控制的分类 1.浅谈发展历史 同生活中的许...

  • 1.版本控制

    什么是版本控制 记录一个或若干文件内容变化,便于将来查阅。 版本控制系统 CVS 本地版本控制系统 复制整个项目,...

  • git 版本控制1

    http://blog.csdn.net/yyh352091626/article/details/5071488...

  • 1,GIT版本控制

    开头 我对git的总结,大体上分为三个方面。 认知与概念 命令 技巧 认知与概念 git与svn,是现在最主流的两...

  • Git: 版本控制(1)

    git help git 显示常用命令,简短解释git -a 或 git help -g 显示git手册git a...

  • Git相关内容

    1、版本控制系统 (1)本地版本控制系统; (2)集中化的版本控制系统(客户端是最新的版本) eg:SVN:不支持...

  • Git整理

    1. 版本控制 CVS及SVN都是集中式的版本控制系统而Git是分布式版本控制系统。 集中式版本控制系统,版本库是...

网友评论

      本文标题:版本控制1

      本文链接:https://www.haomeiwen.com/subject/annmgttx.html