最近开始使用为windows的系统,进行git操作的时候出现了一个小问题。
使用命令:
E:IdeaProjectsmmall>git commit -am 'first commit init project'
异常:
fatal: Paths with -a does not make sense.
原因是Linux系统上使用单引号,结果到windows上也使用单引号,解决问题的方法是将命令中的单引号改成双引号。
E:IdeaProjectsmmall>git commit -am "first commit init project"
这样就对了