git的笔记和使用中的一些技巧的总结
时间:2020-05-15 09:53:01
收藏:0
阅读:35
起别名: alias
使用命令给checkout其别名co, 作用域是全局的: git config --global alias.co checkout
在~/.gitconfig中可以看到设置的别名
[user]
email = huangzhehaocool@163.com
name = HuangZheHao
[alias]
co = checkout
原文:https://www.cnblogs.com/huangZ-H/p/12893052.html
评论(0)