Rob and I have managed to get git commit/push working so I have just
"svn rm"'ed subversion trunk to avoid any mix ups over the working copy.
----------
svn rm -m "Source code now in Apache-hosted git repository"
https://svn.apache.org/repos/asf/jena/trunk
Committed revision 1627061.
----------
... just in case you wonder where the source code has gone.
Still more cleaning up to do but (I hope) nothing urgent.
Andy
On 22/09/14 23:07, Andy Seaborne wrote:
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