For more details:

https://git-wip-us.apache.org/

1/ For committers, the git URL is

git clone https://git-wip-us.apache.org/repos/asf/jena.git Jena

(not git.apache.org - that is read-only as far as I can see)

2/ Set user and email for the local repo before committing anything:

git config user.name "Your Name"
git config user.email [email protected]

(I got this wrong the first time)

3/ .gitignore

There is a basic in git (I looked at some other projects and added likely looking bits so may need tuning)

It includes Eclipse and Maven files:

*/.classpath
*/.project
*/.settings
/target

4/ Line endings.

git is line-ending sensitive.

I've already had to neutralise some Turtle tests that are line-ending sensitive ("""-strings).

        Andy

Reply via email to