Open yantao1995 opened 4 years ago
原错误信息
hexo b INFO Start backup: git [source 7f8b55b] Backup blog 1 file changed, 1 insertion(+) create mode 100644 ttt/ttt.txt Branch 'master' set up to track remote branch 'source' from 'origin'. Everything up-to-date
本身没从事前端开发,根据其中的一个issues,找到了git.js内的执行命令,添加 console.log(command,args); 通过打印命令
console.log(command,args);
hexo b INFO Start backup: git git [ 'add', '-A' ] git [ 'commit', '-m', 'Backup blog' ] [source ee0a586] Backup blog 1 file changed, 1 insertion(+), 1 deletion(-) git [ 'push', '-u', 'origin', 'master:source', '--force' ] Branch 'master' set up to track remote branch 'source' from 'origin'. Everything up-to-date INFO Backup done: git
发现 push -u origin 后面 master:source 拼接有点不对劲 更改此处
for (var t in repo){ commands.push(['push', '-u', t, repo[t].branch, '--force']); //commands.push(['push', '-u', t, 'master:' + repo[t].branch, '--force']); }
成功提交。
收到,我检查下~
原错误信息
本身没从事前端开发,根据其中的一个issues,找到了git.js内的执行命令,添加
console.log(command,args);
通过打印命令发现 push -u origin 后面 master:source 拼接有点不对劲 更改此处
成功提交。