Tag - gitlab

? gitlab ?    2019-01-11 16:21:47    625    0    0

git 常用操作

参考 https://git-scm.com/book/zh/v2


 
配置credential.helper

每次与git做通讯时,需要输入用户密码,记住密码的方式如下:

 
  1. git config --global credential.helper store
 
此时查看配置
 
  1. git config --list
  2. ##可见一行credential.helper=store
  3. ##表示认证信息将会存储


.................

? gitlab ?    2019-01-11 16:21:47    1161    0    0
 
 

redhat 安装 git 图形化工具 gitk

 
  1. yum install gitk
  2. ##安装过程yum 会自动检测依赖的软件是否安装及版本是否匹配,并进行依赖安装或升级

.........

2/2