2019独角兽企业重金招聘Python工程师标准>>>
最近开始使用为windows的系统,进行git操作的时候总会出现一些小问题。
使用命令:
git commit -am 'fix bug'
异常:
fatal: Paths with -a does not make sense.
解决方案:
将命令中的单引号改成双引号。
即:git commit -am "fix bug"
分割线=========================================================
使用命令:
git commit -m 'fix bug'
报错信息如下:
error: pathspec 'master' did not match any file(s) known to
这是因为,还没有提交过,即没有commit过任何文件,当commit过以后就可以解决了,具体参考上一个问题。