博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Practical Git] Configure global settings with git config
阅读量:5040 次
发布时间:2019-06-12

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

You can set up global "git config" settings that apply to all git projects on your system. In this lesson, we review how the ./gitconfig file works. We then add our own git config settings: username, email, editor, and git aliases.

There are many other git config commands that can be used, but this lesson shows you pattern behind them all so you can view and edit your own settings.

 

Alias:

git config --global alias.lg 'log --graph --oneline -p'

 

Then use alias:

git lg

 

转载于:https://www.cnblogs.com/Answer1215/p/5763468.html

你可能感兴趣的文章
正规文法转化DFA
查看>>
敏捷开发(三)- 估算故事
查看>>
BZOJ2400 Spoj 839 Optimal Marks
查看>>
sqlserver in 和 exist 子查询
查看>>
bzoj 2730: [HNOI2012]矿场搭建
查看>>
本地及远程二级缓存
查看>>
机器学习(周志华)——学习笔记2
查看>>
使用ERStudio创建数据表与ER图
查看>>
ubuntu防火墙设置
查看>>
100步问题
查看>>
PLSQL Persistent State文摘
查看>>
对PostgreSQL中bufmgr.c的进一步学习
查看>>
PostgreSQL在何处处理 sql查询之四十四
查看>>
STL: reverse
查看>>
2017-10-15 NOIP模拟赛
查看>>
[学习笔记]设计模式之Proxy
查看>>
Asp.net MVC 中Ajax的使用 [分享]
查看>>
SQL SERVER 2008数据库的表中修改字段的数据类型后,不能保存
查看>>
java基础 (四)之集合
查看>>
单页网站不是梦,几款国外的单页网站创建工具
查看>>