-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathIndexTester.java
More file actions
32 lines (29 loc) · 828 Bytes
/
IndexTester.java
File metadata and controls
32 lines (29 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import java.io.IOException;
public class IndexTester{
public static void main (String [] args) throws IOException
{
Git git = new Git();
git.initialize();
<<<<<<< Updated upstream
// git.add("b.txt");
//git.add("a.txt");
//git.remove ("a.txt");
// git.add("doesn'tmatter.txt");
// git.add("doesn'tmatter.txt");
// git.remove ("a.txt");
Tree.add("blob : piwuhfbwepiugh : check");
Tree.add("tree : piwuhfbwepiugh");
Tree.getContents();
Tree.printSB();
Tree.writeToObjects();
=======
git.add("a.txt");
git.add("b.txt");
// git.add("c.txt");
>>>>>>> Stashed changes
git.remove ("a.txt");
// git.remove("b.txt");
// git.remove("c.txt");
git.add("c.txt");
}
}