博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
完整学习git一git设置
阅读量:6717 次
发布时间:2019-06-25

本文共 998 字,大约阅读时间需要 3 分钟。

  1查看git版本

    git --version

        ➜ php- git:(master) git --version

    git version 1.8.3.1

  2告诉git当前用户的姓名和邮件地址

    git config --global user.name "your name"

    git config --global user.email "your email"

  3友好输出git命令输出时开启颜色显示

    git config --global color.ui true

  4初始化git版本控制工作区

    git init     #ls -aF  .git 目录就是git版本库

  5查找 .gi t文件所在目录 工作区根目录 相对于工作区根目录的相对目录 显示当前目录到工作区根的深度

    git rev-parse --git-dir

    git rev-parse --show-toplevel

    git rev-parse --show-prefix

    git rev-parse --show-cdup

  #git config命令各个参数的区别 --global --system

  实践  打开当前工作取中的.git/config 文件 (当前工作区git配置文件)    引用优先级 高

    git config -e

  实践 打开当前用户的.gitconfig文件 ~./.gitconfig (git全局配置文件)        中

    git config -e --global

  实践 打开/etc/gitconfig系统级配置文件进行编辑 (git system配置文件)                  低

    git config -e --system    

  git config 用与读取和更改ini配置文件

    git config <section>.<key> = value;

  #实践 工作区目录忽略权限

    git config core.filemode = false

  #查看远程仓库地址

    git config remote.origin.url

转载于:https://www.cnblogs.com/a-flydog/p/5764034.html

你可能感兴趣的文章
oracle 之 控制oracle RAC 进行并行运算
查看>>
jsTree插件简介(三)
查看>>
2D Rotated Rectangle Collision
查看>>
PHP error_reporting() 函数
查看>>
SpringBoot(十)-- 整合MyBatis
查看>>
查看三种MySQL字符集的方法
查看>>
django -- 多对多关系的实现
查看>>
with revoked permission android.permission.CAMERA
查看>>
Python在函数中使用*和**接收元组和列表
查看>>
115. Distinct Subsequences
查看>>
C++ 指针(不论什么一个指针本身的类型都是unsigned long int型)
查看>>
[PHP] 通用网关接口CGI 的运行原理
查看>>
phoenixframe自己主动化平台在Linux环境下运行用例的说明
查看>>
Linux:sheel脚本for的用法,及日期参数+1day用法
查看>>
GetKeyState(), GetAsyncKeystate(), GetKeyboardSlate()
查看>>
函数式编程
查看>>
spring boot mybatis没有扫描jar中的Mapper接口
查看>>
ijkPlayer 集成
查看>>
Python 文件 writelines() 方法
查看>>
背水一战 Windows 10 (76) - 控件(控件基类): Control - 基础知识, 焦点相关, 运行时获取 ControlTemplate 和 DataTemplate 中的元素...
查看>>