本月博客排行
-
第1名
Xeden -
第2名
fantaxy025025 -
第3名
bosschen - paulwong
- johnsmith9th
- zysnba
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - gengyun12
- wy_19921005
- vipbooks
- e_e
- benladeng5225
- wallimn
- ranbuijj
- javashop
- jickcai
- fantaxy025025
- zw7534313
- qepwqnp
- robotmen
- 解宜然
- ssydxa219
- sam123456gz
- zysnba
- sichunli_030
- tanling8334
- arpenker
- gaojingsong
- xpenxpen
- kaizi1992
- wiseboyloves
- jh108020
- xyuma
- ganxueyun
- wangchen.ily
- xiangjie88
- Jameslyy
- luxurioust
- mengjichen
- lemonhandsome
- jbosscn
- nychen2000
- zxq_2017
- lzyfn123
- wjianwei666
- forestqqqq
- ajinn
- siemens800
- hanbaohong
- 狂盗一枝梅
- java-007
- zhanjia
- 喧嚣求静
- Xeden
最新文章列表
git 如何回滚远程仓库版本
前言: 使用git管理项目开发的过程中经常会碰到这种情况:某次提交已经push到了远程仓库,可是突然需要回退代码,怎么将远程代码库回滚呢?
不推荐这样做:在网上看到大部分人给出的解决方案是先将本地回滚,然后删除远程分支,之后再将本地的分支push到远程仓库,这其实是一种很危险的方案,毕竟直接删除远程分支太危险。
关于远程仓库回滚
首先,必须要明白的一件事,任何普通用户不能擅自做有关远 ...
Veritas cluster Agents (VCS agents)
http://www.unixarena.com/2012/06/vcs-switch-over-issue-due-to-failed.html
VCS agents:
VCS agent use to communicate to the HAD (high availability daemon) with all the configuration and attributes.For ...
Git分布式版本管理系统常用命令扫盲篇
前段时间看下Git这种分布式版本管理技术,感觉比SVN,VSS之类的VCS有很多可取之处,下面介绍了下Git如何在Widows下使用,以及一些Git常用操作基本命令;--------------------------------------------windows 下使用git-----------------------------------------------1.下安装git fo ...
系统重启后,VCS状态ADMIN_WAIT or STALE_ADMIN_WAIT
VCS教程
http://hobgoblinconsulting.com/hints/vxvm/vcs/
系统重启后,VCS状态为ADMIN_WAIT or STALE_ADMIN_WAIT
After a reboot, a node in a VERITAS Cluster Server (VCS) environment is in an ADMIN_WAIT state o ...
《Pro Git》读后感
开始接触Git是在去年年初,公司开始从Clearcase 过度到Git,而我所工作的项目还未在工作之列,虽然参加了一些培训,但对Git依旧是懵懵懂懂。后来开始进行一些code repo在Git上的开发工作,装了google 的msysgit和smart git, 一直在图形UI上使用着Git,也一直在master branch上工作,基本上没用到太多的DVCS的特性,汗~~。直到今年初开始了另一个项 ...
Chapter 9. Git Internals
1.
Git is fundamentally a
content-addressable file system with a VCS user interface written on top of it.
2.
Git has a bunch of verbs that
do low-level work and were designed ...
Chapter 7. Customizing Git
1.
Git uses a series of
configuration files to determine non-default behavior that you may want. The
first place Git looks for these values is in an /etc/gitconfig
file which contains valu ...
Chapter 6. Git Tools
1.
Git is smart enough to figure
out what commit you meant to type if you provide the first few characters, as
long as your partial SHA-1 is at least four characters long and
unambigu ...
Chapter 2. Git Basics
1.
You can get a Git project using
two main approaches. The first takes an existing project or directory and
imports it into Git. The second clones an existing Git repository from anot ...
Chapter 1. Getting Started
1. Version control is a system that records changes to a file or set of files over time so that you can recall specific versions later.
2. Local Version Control Systems have a simple database t ...