Christian Jaeger wrote:
tar xzf module.tar.gz cd module git init
And I should have said that at this point, you should write a .gitignore file which contains the paths, or shell glob patterns, to the files you don't want under version control, such as your .*.scm files probably (they seem to be generated). It makes sense to also commit the .gitignore file if it contains matches that concern files that are being generated on the users' machines too (exactly those autogenerated files).
git add . git commit
Christian.