博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
git别名
阅读量:5821 次
发布时间:2019-06-18

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

git别名

创建别名

[root@localhost apeng]# git config --global alias.ci commit[root@localhost apeng]# git config --global alias.fz branch[root@localhost apeng]# git config --global alias.sw checkout

查看别名

[root@localhost apeng]# git config --list |grep aliasalias.ci=commitalias.fz=branchalias.sw=checkout

将别名加入到这个文件中/root/.gitconfig

[root@localhost apeng]# vim /root/.gitconfig[user]        name = apeng        email = apeng@apenglinux.com[alias]        ci = commit        fz = branch        sw = checkout

给日志作一个别名

[root@localhost apeng]# git config --global alias.lg "log --color --graph \> --pretty=format:'%Cred%h%Creset \> -%C(yellow)%d%Creset %s %Cgreen(%cr) \> %C(bold blue)<%an>%Creset' --abbrev-commit"

git别名

取消别名

[root@localhost apeng]# git config --unset alias.ci

转载于:https://blog.51cto.com/13480443/2090639

你可能感兴趣的文章
MySQL出现Access denied for user ‘root’@’localhost’ (using password:YES)
查看>>
通过Roslyn构建自己的C#脚本(更新版)(转)
查看>>
红黑树
查看>>
UIImagePickerController拍照与摄像
查看>>
python调用windows api
查看>>
第四章 mybatis批量insert
查看>>
Java并发框架——什么是AQS框架
查看>>
【数据库】
查看>>
Win配置Apache+mod_wsgi+django环境+域名
查看>>
linux清除文件内容
查看>>
WindowManager.LayoutParams 详解
查看>>
find的命令的使用和文件名的后缀
查看>>
Android的Aidl安装方法
查看>>
Linux中rc的含义
查看>>
曾鸣:区块链的春天还没有到来| 阿里内部干货
查看>>
如何通过Dataworks禁止MaxCompute 子账号跨Project访问
查看>>
js之无缝滚动
查看>>
Django 多表联合查询
查看>>
logging模块学习:basicConfig配置文件
查看>>
Golang 使用 Beego 与 Mgo 开发的示例程序
查看>>