Skip to content

Commit d4ce2a6

Browse files
committed
diffviewer module added
1 parent 92cdd91 commit d4ce2a6

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "diffviewer"]
2+
path = diffviewer
3+
url = https://github.com/codinuum/diffviewer

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,17 @@ The following command line executes Diff/AST within a container to compare sampl
3838

3939
$ ./cca.py diffast -c results samples/java/0/Test.java samples/java/1/Test.java
4040

41-
Once you have built [DiffViewer](diffviewer), you can inspect the AST differences in a viewer window. See [`diffviewer/README.md`](diffviewer/README.md) for details.
41+
If you want to inspect the AST differences in a viewer window, you have to initialize a submodule `diffviewer` first.
42+
43+
$ git submodule init
44+
$ git submodule update
45+
46+
See [`diffviewer/README.md`](diffviewer/README.md) to build the viewer.
47+
Once you heve built the viewer, you can run the viewer as follows.
4248

4349
$ diffviewer/run.py -c results samples/java/0/Test.java samples/java/1/Test.java
4450

45-
You can run both Diff/AST and DiffViewer by the following line.
51+
You can also run both at once.
4652

4753
$ ./cca.py diffast -c results --view samples/java/0/Test.java samples/java/1/Test.java
4854

diffviewer

Submodule diffviewer added at be85748

0 commit comments

Comments
 (0)