Skip to content

Commit

Permalink
Move and list snippet which was fixed by the previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
centic9 committed Jan 9, 2023
1 parent c67a959 commit 9e278f8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ Please make sure to take a look at the nicely written [introduction](http://www.
* [Using InMemoryRepository to clone a Git repo in-memory and work from there](https://github.com/centic9/jgit-cookbook/blob/master/src/main/java/org/dstadler/jgit/porcelain/CloneRemoteRepositoryIntoMemoryAndReadFile.java)
* [Checkout a PR from GitHub](https://github.com/centic9/jgit-cookbook/blob/master/src/main/java/org/dstadler/jgit/porcelain/CheckoutGitHubPullRequest.java)
* [Push to a remote repository](https://github.com/centic9/jgit-cookbook/blob/master/src/main/java/org/dstadler/jgit/porcelain/PushToRemoteRepository.java)
* [Set remote tracking branch](https://github.com/centic9/jgit-cookbook/blob/master/src/main/java/org/dstadler/jgit/porcelain/TrackMaster.java)

##### Low-level API

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.dstadler.jgit.unfinished;
package org.dstadler.jgit.porcelain;

/*
Copyright 2013, 2014 Dominik Stadler
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ public void runSamples() throws Exception {
ShowFileDiff.main(null);
ShowLog.main(null);
ShowStatus.main(null);
TrackMaster.main(null);
WalkAllCommits.main(null);
}
}

0 comments on commit 9e278f8

Please sign in to comment.