博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Git Bash的一些命令和配置
阅读量:5317 次
发布时间:2019-06-14

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

查看git版本号:

git --version

如果是第一次使用Git,你需要设置署名和邮箱:

$ git config --global user.name "用户名"

$ git config --global user.email "电子邮箱"

检查你的设置

$ git config --list

或单独检查一项:

$ git config user.name

「扩展」配置文件

配置文件在当前主文件夹下的.gitconfig文件

git config --global alias.st status

git config --global alias.ci commit

git config --global alias.co checkout

git config --global alias.br branch

cat ~/.gitconfig

 

将代码仓库clone到本地:

$ git clone -o github https://github.com/XXXXXXXX(仓库的地址)

选择你的编辑器(使用notepad++举例):

window系统上,执行以下操作:

$ git config --global core.editor "C:/Program Files (x86)/Notepad++/notepad++.exe' -multiInst -nosession"

x86系统上:

$ git config --global core.editor "'C:/Program Files/Notepad++/notepad++.exe' -multiInst -nosession"

转载于:https://www.cnblogs.com/xcmhttp/p/6256280.html

你可能感兴趣的文章
Linux设置环境变量的方法
查看>>
Atitit.进程管理常用api
查看>>
构建自己的项目管理方案
查看>>
利用pca分析fmri的生理噪声
查看>>
div水平居中且垂直居中
查看>>
怎么在windows7系统我的电脑中添加快捷方式
查看>>
epoll使用具体解释(精髓)
查看>>
AndroidArchitecture
查看>>
原生JavaScript第六篇
查看>>
安装Endnote X6,但Word插件显示的总是Endnote Web"解决办法
查看>>
python全栈 计算机硬件管理 —— 硬件
查看>>
大数据学习
查看>>
简单工厂模式
查看>>
Delphi7编译的程序自动中Win32.Induc.a病毒的解决办法
查看>>
Objective-C 【关于导入类(@class 和 #import的区别)】
查看>>
倍福TwinCAT(贝福Beckhoff)常见问题(FAQ)-点击运行按钮进入到运行状态报错Error starting TwinCAT System怎么办 AdsWarning1823怎么办...
查看>>
【转】javascript 中的很多有用的东西
查看>>
Centos7.2正常启动关闭CDH5.16.1
查看>>
Android 监听返回键、HOME键
查看>>
Android ContentProvider的实现
查看>>