repo.or.cz
/
Gitrdone.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Redid the tree again.
[Gitrdone.git]
/
Difftool.cs
blob
a876dc3aaf01d2569e350e670d0f8f9cf5fbcbb0
1
2
using
System
;
3
4
namespace
Gitrdone
5
{
6
enum
WhitespaceTypes
7
{
8
ShowWhitespace
=
0
,
9
IgnoreSpaceChange
=
1
,
10
IgnoreSpaceAtEOL
=
1
<<
1
11
}
12
13
enum
PatchFormat
14
{
15
PatchFormat
,
16
RawFormat
,
17
PatchAndRawFormat
,
18
DiffStatFormat
,
19
Summary
,
20
NameOnly
,
21
NameAndStatus
22
}
23
24
public class
Difftool
25
{
26
27
public
Difftool
()
28
{
29
throw new
NotImplementedException
();
30
}
31
}
32
}