File tree 10 files changed +65
-3
lines changed
10 files changed +65
-3
lines changed Original file line number Diff line number Diff line change 1
- root : ./docs
2
-
3
1
structure :
4
- readme : ../README.md
2
+ readme : README.md
3
+ summary : docs/README.md
Original file line number Diff line number Diff line change
1
+ # gitbase
2
+
3
+ * [ Introduction] ( introduction.md )
4
+ * [ Join the community] ( join-the-community.md )
5
+
6
+ ### Using gitbase
7
+
8
+ * [ Getting started] ( using-gitbase/getting-started.md )
9
+ * [ Configuration] ( using-gitbase/configuration.md )
10
+ * [ Schema] ( using-gitbase/schema.md )
11
+ * [ Supported syntax] ( using-gitbase/supported-syntax.md )
12
+ * [ Functions] ( using-gitbase/functions.md )
13
+ * [ Examples] ( using-gitbase/examples.md )
Original file line number Diff line number Diff line change
1
+ # Introduction
2
+
3
+ ## Motivation and scope
4
+
5
+ ## Further reading
Original file line number Diff line number Diff line change
1
+ # Join the community
2
+
3
+ ## Chat
4
+
5
+ ## Contributing
6
+
7
+ ## Reporting bugs
Original file line number Diff line number Diff line change
1
+ # Configuration
2
+
3
+ ## Environment variables
4
+
5
+ ## Executable parameters
Original file line number Diff line number Diff line change
1
+ # Examples
2
+
3
+ ## Get all the repositories where a specific user contributes on HEAD reference
4
+
5
+ ``` sql
6
+ SELECT refs .repository_id
7
+ FROM refs
8
+ NATURAL JOIN commits
9
+ WHERE commits .commit_author_name = ' Javi Fontan' AND refs .ref_name = ' HEAD' ;
10
+ ```
Original file line number Diff line number Diff line change
1
+ # Functions
2
+
3
+ ## gitbase functions
4
+
5
+ ## Standard functions
6
+
7
+ <!-- TODO add include to new markdown on go-mysql-server -->
Original file line number Diff line number Diff line change
1
+ # Getting started
2
+
3
+ ## Download an use the binary
4
+
5
+ ## Running with docker
6
+
7
+
8
+
Original file line number Diff line number Diff line change
1
+ # Schema
2
+
3
+ ## Main tables
4
+
5
+ ## Relation tables
6
+
7
+ ## Database diagram
Original file line number Diff line number Diff line change
1
+ ## Supported syntax
You can’t perform that action at this time.
0 commit comments