git配置文件位置: 当前用户目录下的隐藏文件.gitconfig

找不到原因:没有配置name

解决办法: git config --global user.name 'your name'    git config --global user.email 'your email'

设置命令简写:配置文件下加  

 [alias]
    co = checkout
    ci = commit
    br = branch
    st = status
    mg = merge --no-ff
    ci = commit

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-04-09
  • 2021-07-28
  • 2021-08-06
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-02-23
  • 2021-12-21
  • 2021-08-16
  • 2022-12-23
  • 2022-02-25
  • 2021-06-10
相关资源
相似解决方案