________ _____ _____
/ _____/ _____/ ____\/ ____\
/ \ ___ / _ \ __\\ __\
\ \_\ ( <_> ) | | |
\______ /\____/|__| |__|
\/
goff is a command-line tool for compare folder and files change, written in Go.
- Compare Folder B vs A
- What file new in folder B vs folder A
- What file have deleted in folder B vs folder A
- What file change content
- What content change
- Compare file B vs A
goff [path_old] [path_new]
Examples:
$ goff old-hello.txt new-hello.txt
$ goff old/hello.txt new/hello.txt
$ goff old new
$ goff old/abc new/abc
Prerequisites: Install Golang
go install github.com/codegram01/goff@latest
git clone https://github.com/codegram01/goff.git
cd goff
# Run code:
go run .
# Build
go build .
# Install command
go install