LXY3800 发表于 2018-9-18 11:14:39

《版本控制之道--使用Git》笔记

git config --global user.name “Nshen” //必须  git config --global user.email “nshen121@gmail.com” //必须
  git config --global color.ui “always” //或者"auto", always不仅Base环境是彩色,Dos里也是彩色的。
  git config --global core.editor notepad.exe //设为windows记事本
  git config --global alias.ci “commit” //别名缩写
  git config --global merge.tool //可以设置合并工具
  git config --global --list //查看设置

页: [1]
查看完整版本: 《版本控制之道--使用Git》笔记