text Git工作流程配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text Git工作流程配置相关的知识,希望对你有一定的参考价值。
git config --global user.name "Your Name";
git config --global user.email "your_email@whatever.com";
git config --global core.autocrlf true;
git config --global core.safecrlf warn;
git config --global core.quotepath off;
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 config --global alias.co checkout;
git config --global alias.ci commit;
git config --global alias.st status;
git config --global alias.br branch;
git config --global alias.hist "log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short";
git config --global alias.type 'cat-file -t';
git config --global alias.dump 'cat-file -p';
以上是关于text Git工作流程配置的主要内容,如果未能解决你的问题,请参考以下文章
text Git工作流程
text Git工作流程
text git的基本工作流程
text Differente配置git
text 我的全局git配置
text Git ftp配置和命令