This is an automated email from the ASF dual-hosted git repository.
wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-devtools.git
The following commit(s) were added to refs/heads/main by this push:
new 8721fd6 Create README.md
8721fd6 is described below
commit 8721fd6a8e731e74bf1cec039754085b6e6b83f7
Author: Dave Fisher <[email protected]>
AuthorDate: Wed Feb 26 10:06:35 2025 -0800
Create README.md
---
README.md | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..6800c10
--- /dev/null
+++ b/README.md
@@ -0,0 +1,28 @@
+# Apache OpenOffice Developer Tools
+
+Scripts that are helpful for developers who are building Apache OpenOffice
from Source Code
+
+## Contents
+
+TODO
+
+## History
+
+This repository was cloned from a subversion repository.
+
+1. Created using self-service at
https://gitbox.apache.org/boxer/?action=newrepo
+
+2. Cloned and pushed.
+
+ ```bash
+ # get the ASF authors map.
+ curl https://gitbox.apache.org/authors.txt --output authors.txt
+ # this clones the svn repository into git. You may need to install svn2git.
+ # it takes almost three hours.
+ git svn clone https://svn.apache.org/repos/asf/openoffice/devtools -A
authors.txt
+ cd devtools
+ git remote add origin https://github.com/apache/openoffice-devtools.git
+ git branch -M main
+ # due to my setup I used GitHub Desktop for this next step.
+ git push -u origin main
+ ```