github、git软件安装、pycharm下使用git配置、Git GUI相关 ...
分类:
其他好文 时间:
2018-04-29 22:40:16
阅读次数:
221
输入(一定打开git获取) $ git config --list 可以查看配置的一些东西。可以看到user.name 和user.email 分别是什么。。 如果你没有初始化过。那么直接: $ git config --global user.name "输入你的用户名" $ git config ...
分类:
其他好文 时间:
2018-04-28 23:43:25
阅读次数:
230
整体分三步: 下载和安装git 配置idea 从git获取项目 详细步骤: 1. 下载和安装git 下载地址:https://git-scm.com/download/win,我本机使用的是window操作系统,安装好。 2. 配置idea 在idea的配置界面中,选择版本控制->GitHub,类型 ...
分类:
其他好文 时间:
2018-04-27 02:18:41
阅读次数:
147
一.查看git配置 $ git config --list 此命令会列出所有GIT当时能找到的配置 ... 查看 列表项 user.email=123@qq.com 邮箱 user.name=123 用户名 二.修改邮箱和用户名 1.重新设置邮箱和用户名 $ git config --global ...
分类:
其他好文 时间:
2018-04-27 02:13:29
阅读次数:
450
First start by setting up your own public/private key pair set. This can use either DSA or RSA, so basically any key you setup will work. On most syst ...
分类:
其他好文 时间:
2018-04-24 21:57:59
阅读次数:
579
1.在GitHub创建仓库 点击New repository创建仓库 2.填写关于仓库的相关信息 3.仓库创建完毕,接下来用GIT Bash/GitHub客户端克隆项目到本地(本文所用的客户端是Git Bash) 如何配置Git客户端可以参考这篇博文https://www.cnblogs.com/j ...
分类:
其他好文 时间:
2018-04-21 00:48:10
阅读次数:
242
不多说了,直接上列子pom.xml的<dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-config-server</artifactId></dependency>yml配置设置spring:application:
分类:
编程语言 时间:
2018-04-17 17:01:47
阅读次数:
2699
一、安装Git 1、linux下安装: yum install -y git 2、windows下安装: 从https://git-for-windows.github.io下载window版本git安装包,提示安装 二、配置Git 1、配置用户名和邮箱: git config --global u ...
分类:
其他好文 时间:
2018-04-16 15:13:10
阅读次数:
225
针对linux系统,全部采用shell命令的方式实现 一、查看相关信息 which -a git 查看git的安装位置git version 查看git的版本git help 学习相关的命令 二、git配置用户信息 1、git config --global user.name Liang 配置用户 ...
分类:
其他好文 时间:
2018-04-05 13:27:45
阅读次数:
193
一·登录GitHub 1. 2. 3. 4. 二、 登录成功后再配置git 1 2 ...
分类:
其他好文 时间:
2018-04-04 23:27:11
阅读次数:
171