一 svn简单使用
svn diff file //检查检查file和最新版本的区别,补丁,相当于diff -Nur svn://xxx/file ./file
svn add file //如果你新创建了一个文件或者文件夹,需要执行这条指令将其加入本地代码库
svn delete file //这是删除
svn status //看看当前本地代码库的状态
svn up/update //检查最新版本,更新
svn up/update -r 150 //检查提取指定版本副本文件
svn info //查看当前副本版本信息
svn ci -m files “message” //所有的工作做完后,需要执行这条,来提交你的代码到google code代码库
svn cp ls mv mkdir rename rm等
二 git简单使用
vi .git/config //可以查看当前的remote和已经track了remote分支的本地分支
vi .git/packed-refs //可以查看所有分支,及其version
git clone -b master/branch-name git://xxx.com/xxx.git name //下载指定branch
git status //看看当前本地代码库的状态
git branch (-a) //显示的是本地分支
git commit //是提交到当前的本地分支
git pull origin aRemoteBranch
git push origin aRemoteBranch
git remote //显示远程服务器
git remote show aRemote //显示指定的远程服务器(origin)上的远程分支
git checkout –track -b aLocalBranch aRemote/aRemoteBranch //创建一个新本地分支追踪远程分支(也可以直接 git checkout aRemoteBranch)
远程分支不可见,只能通过新建本地分支来追踪远程分支,本地分支和远程分支是两个不同的东西,也可以不同名。
checkout的时候会先检查本地分支,如果有则checkout到这个本地分支(不论它track哪个远程分支),如果没有则查看远程分支,如果有同名远程分支则新建一个本地同名分支并追踪(track)远程分支
git branch -d aLocalBranch //删除本地分支
git push ARemote :aRemoteBranch //删除远程分支
-d -> -D //强制删除
//可以建多个本地分支track同一个远程分支,删除本地分支对远程分支没有影响。