Skip to content

Commit 8954b9b

Browse files
committed
Initialised the repository. #2
Added Jakub and myself as authors. Added empty ChangeLog and NEWS. Added GPLv3 licence. Added initial .gitignore. Small changes to readme.
1 parent caf3fe8 commit 8954b9b

File tree

7 files changed

+721
-3
lines changed

7 files changed

+721
-3
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Generated files.
2+
build/
3+
documentation/
4+
# OSX
5+
.DS_Store
6+

AUTHORS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Jakub Kozlowski <[email protected]>
2+
William Martin <[email protected]>
3+

ChangeLog

Whitespace-only changes.

INSTALL

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Installation instructions for diffr-c.
2+
#
3+
# This program is written under C++, and built using CMake.
4+
# To build, you will need a C++ compiler such a G++ installed and in the
5+
# PATH environment variable.
6+
# Additionally, you will need to have CMake
7+
# (http://www.cmake.org/cmake/resources/software.html) installed.
8+
9+
############
10+
# BUILDING #
11+
############
12+
13+
For best results:
14+
1. Run "mkdir build"
15+
2. Run "cd build"
16+
3. Run "cmake .." to create the Makefile.
17+
4. Run "make" to build.
18+
19+
Optionally:
20+
5. Run "make install" to install the program.
21+
22+
###########
23+
# TESTING #
24+
###########
25+
26+
6. Run "ctest" to run all tests.
27+
28+
###########
29+
# RUNNING #
30+
###########
31+
32+
7. Run "./diffr-c" to run the program from within the build directory, or if installed, just run "diffr-c".
33+

LICENCE

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.

NEWS

Whitespace-only changes.

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ diffr
22
=============
33
An intelligent diff/patch tool that knows how to copy and move, and has an 'r' at the end of its name.
44

5-
* See LICENCE and COPYING for the details on how to obtain the licence.
6-
* See ChangeLog and NEWS for the details of new versions, and other news that relate to the project.
7-
* See INSTALL for the details on how to compile and install diffr.
85
* See AUTHORS for the details on who contributed to this awesome project.
6+
* See ChangeLog for a detailed list of changes.
7+
* See INSTALL for the details on how to compile and install diffr.
8+
* This project uses the GPLv3 licence. See LICENCE for a copy of the licence, or visit <http://www.gnu.org/licenses/gpl.html>.
9+
* See NEWS for a version summary, and other news that relates to the project.
10+

0 commit comments

Comments
 (0)