This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def main(): | |
try: | |
checker = CompareChangesLib( | |
owner="your-github-owner", | |
repo="your-repo", | |
access_token="ghp_xxx", | |
local_repo_path=".", | |
branch_a="origin/main", | |
branch_b="my-feature-branch" | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.nio.file.Files | |
import java.nio.file.Path | |
import java.nio.file.attribute.BasicFileAttributes | |
import kotlin.system.exitProcess | |
import kotlin.streams.toList | |
fun main(vararg args: String) { | |
val dir = try { | |
Path.of(args[0]) | |
} catch (_: Exception) { |
OlderNewer