Hi Sean! Thank you that worked. This way the .gitattributes did not get ignored.
On 03/26/2016 04:54 PM, Sean Whitton wrote: > Hello, > > You could try just doing what gbp import-orig does manually. E.g.: > > - unpack the tarball > - git checkout --orphan temp > - git add . && git commit -m "import upstream version 1.2.3" > - git tag 1.2.3 (or upstream/1.2.3 if that's your convention) > - git checkout master && git branch -D temp > - git merge 1.2.3 (or upstream/1.2.3) > > I think that would be enough for gbp buildpackage to work. >