美文网首页
Git 起步

Git 起步

作者: JoinPerson | 来源:发表于2017-11-14 00:18 被阅读0次

初次运行 Git 前的配置

/etc/gitconfig        --system

~/.gitconfig 或 ~/.config/git/config        --global

.git/config          针对该仓库

git config [--[global | system]] user.name "wangzhen"

git config [--[global | system]] user.name

git config [--[global | system]] user.email "867480592@qq.com"

git config [--[global | system]] user.email

git config [--[global | system]] core.editor [emacs | vim]

git config [--[global | system]] core.editor

git config --list

git config --global --list

git config --system --list

获取帮助

git help config

相关文章

  • 1.1 起步 - Git 基础

    1.1 起步 - Git 基础 本文轉自:https://git-scm.com/book/zh/v2/起步-Gi...

  • Git起步

    原文链接:http://hh-yzm.com/index.php/archives/3/ 配置 1./etc/gi...

  • Git 起步

    初次运行 Git 前的配置 /etc/gitconfig --system ~/.gitconfig 或 ~...

  • Git——起步

    关于版本控制 版本控制系统是一种记录一个或若干文件内容变化,以便将来查阅特定版本修订情况的系统。可对任何类型的文件...

  • Git 起步

    安装 Git 在 windows 上面安装 简单的方法是安装 GitHub for Windows。 该安装程序包...

  • Git 起步

    Git在电脑上的使用 1.本地控制 win+R,输入“cmd”打开命令提示符 输入 cd 文件夹命 进入所需要控制...

  • Git起步

    GitHub官网 一、下载安装Git Git下载,选择对应的操作系统下载即可 双击默认安装(以Windows系统为...

  • git资源学习

    git资源学习 Git详解之一 Git起步 Git详解之二 Git基础 Git详解之三 Git分支 Git详解之四...

  • cocoapods上传.podspec文件流程

    git 安装教程:https://git-scm.com/book/zh/v1/起步-安装-Git cocoapo...

  • Centos6.9下编译安装GIT

    https://git-scm.com/book/zh/v2/起步-安装-Git 1、确认当前没有装过git的rp...

网友评论

      本文标题:Git 起步

      本文链接:https://www.haomeiwen.com/subject/eihnvttx.html