我试图在我的git存储库中存档文件夹:
$.get('path/to/my.xml').done(function (xml) {
var myObject = {
temperature : $(xml).find('myTemp').attr('val')
}
});
但是,我得到的错误信息是:
git archive --format=tar HEAD:mydir/ | tar t
我遵循的说明是here。
我的git版本是:2.1.2
google搜索只提供了6个链接,所有这些链接都已有几年的历史了,看起来并不相关。
答案 0 :(得分:1)
解决方案是:
cd $myrepo/mydir
git archive --format=tar HEAD ./ | tar t