This is an automated email from the ASF dual-hosted git repository.
colegreer pushed a commit to branch 3.7-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
The following commit(s) were added to refs/heads/3.7-dev by this push:
new d6f20d09d9 Added a tip block to "getting started" tutorial (#3156)
d6f20d09d9 is described below
commit d6f20d09d9c50bb4bd50955e4a2eff023a85efc5
Author: nnmva <[email protected]>
AuthorDate: Mon Jul 14 12:51:25 2025 -0400
Added a tip block to "getting started" tutorial (#3156)
---
docs/src/tutorials/getting-started/index.asciidoc | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/docs/src/tutorials/getting-started/index.asciidoc
b/docs/src/tutorials/getting-started/index.asciidoc
index 07a2053636..f0794f6dd4 100644
--- a/docs/src/tutorials/getting-started/index.asciidoc
+++ b/docs/src/tutorials/getting-started/index.asciidoc
@@ -75,6 +75,10 @@ gremlin>
TIP: Windows users may use the included `bin/gremlin.bat`
(`bin/gremlin-java8.bat` for Java 8) file to start the Gremlin
Console.
+TIP: If you make a mistake when entering a command and the prompt gets "stuck"
(for example, after a syntax error or an
+incomplete statement), you can use the `:clear` (or `:c`) command to reset the
console's input buffer and return to a
+normal prompt.
+
The Gremlin Console is a
link:http://en.wikipedia.org/wiki/Read%E2%80%93eval%E2%80%93print_loop[REPL
environment],
which provides a nice way to learn Gremlin as you get immediate feedback for
the code that you enter. This eliminates
the more complex need to "create a project" to try things out. The console is
not just for "getting started", however.