Git 撤销 commit
1622浏览
–mixed git reset HEAD^ 不删除工作空间提交的代码,撤销 commit,并且撤销 git add . 操作。 注意:-mixed 为默认参数。git reset --mixed HEAD^ 和 git reset H...
1622浏览
–mixed git reset HEAD^ 不删除工作空间提交的代码,撤销 commit,并且撤销 git add . 操作。 注意:-mixed 为默认参数。git reset --mixed HEAD^ 和 git reset H...
1729浏览
husky Modern native Git hooks made easy 安装 当前版本是 6.0.0 ## npm npm install husky --save-dev ## yarn yarn add husky --...
2112浏览
Windows 平台的换行是以 \r\n 的方式,也就是 CRLF,Linux 的换行是以 \n 的方式,也即是 LF。 Git 在 Linux 平台提交代码的时候,默认会把换行转换成 LF,在 Windows 平台拉取代码的时候会转成 CRLF。 ...