1 安装及下载client 端 2 什么是SVN(Subversion)? 3 为甚么要用SVN? 4 怎么样在Windows下面建立SVN Repository? 5 建立一个Working目录 6 新增档案及目录到Repository中 7 更新档案及目录 8 更新至特定版本 9 复制档案及目录 ...
分类:
其他好文 时间:
2018-05-19 10:41:00
阅读次数:
172
We use git commands in the day to day work, below are the most common git commands I could think of. git checkout . //pull from remote branch git pull ...
分类:
其他好文 时间:
2018-05-19 01:14:53
阅读次数:
128
git checkout -b dev git新建dev分支,发现切换到了dev分支,但是master分支没有了 git branch和git branch -a 都没有任何反应,看不到其他分支, git pull 报错 原因: 在gitlab上面新建项目的时候,readme里面没有填写任何内容,在 ...
分类:
其他好文 时间:
2018-05-16 19:39:50
阅读次数:
516
git branch https://blog.csdn.net/xiruanliuwei/article/details/6919319 git branch 不带参数:列出本地已经存在的分支,并且在当前分支的前面加“*”号标记,例如: #git branch* master newbranch ...
分类:
其他好文 时间:
2018-05-15 21:01:11
阅读次数:
129
1、下载 地址:https://kafka.apache.org/downloads 本文中下载版本:kafka_2.10-0.8.2.2.tgz 2、安装 安装目录:/usr/local 3、启动zookeeper 3.1、因为zookeeper.properties注释实在太多,所以我通过gre ...
分类:
其他好文 时间:
2018-05-15 15:58:02
阅读次数:
236
一、SVN结构作用概述: SVN目录下一般采用标准的source/branches、source/trunk、source/tags结构。 trunk目录下放置开发的主代码,1新功能模块的开发首先放在主干上,需要修改完善升级时,通过创建branch进行完善;2完善的代码,由负责定期将各分支的代码合并 ...
分类:
其他好文 时间:
2018-05-13 15:10:49
阅读次数:
119
git clone http:// git branch -a //查看远程分支 git checkout //切换分支 git commit //本地仓库保存 git pull //远程仓库更新到本地仓库 git push origin /master //推送本地仓库代码到远程仓库 ...
分类:
其他好文 时间:
2018-05-13 13:53:29
阅读次数:
151
一.分支相关 1.基本命令 # 列出所有本地分支 $ git branch # 列出所有远程分支 $ git branch -r # 列出所有本地分支和远程分支 $ git branch -a # 新建一个分支,但依然停留在当前分支 $ git branch [branch-name] # 新建一个 ...
分类:
其他好文 时间:
2018-05-12 22:31:11
阅读次数:
197
$ git add -A $ git statusOn branch common_shirleyYour branch is up to date with 'origin/common_shirley'. Changes to be committed: (use "git reset HEAD ...
分类:
其他好文 时间:
2018-05-12 15:10:33
阅读次数:
174
一.安装git环境 (2)Git安装 Centos: Ubuntu: Windows安装git bash软件 注意不要使用git 1.8以下版本,推荐使用2.7版本,yum安装默认为1.8的版本。 二.使用源码编译安装 1、安装依赖 2.下载git,并解压 3.安装执行 三.GIT的简单操作 3.1 ...
分类:
其他好文 时间:
2018-05-10 12:14:51
阅读次数:
164