rename fgj to fj

Module path, binary name, config dir, help text, and docs
all updated from fgj-sid/fgj to fj.
This commit is contained in:
sid 2026-04-26 08:16:52 -06:00
parent a6cf9a7096
commit bc43f6e5a5
34 changed files with 479 additions and 479 deletions

View file

@ -4,8 +4,8 @@ import (
"fmt"
"strings"
"forgejo.zerova.net/public/fgj-sid/internal/api"
"forgejo.zerova.net/public/fgj-sid/internal/config"
"forgejo.zerova.net/public/fj/internal/api"
"forgejo.zerova.net/public/fj/internal/config"
"github.com/spf13/cobra"
)
@ -14,16 +14,16 @@ var prDiffCmd = &cobra.Command{
Short: "Show the diff for a pull request",
Long: "Fetch and display the diff for a pull request.",
Example: ` # View the diff for PR #123
fgj pr diff 123
fj pr diff 123
# Colorized diff output
fgj pr diff 123 --color always
fj pr diff 123 --color always
# Show only changed file names
fgj pr diff 123 --name-only
fj pr diff 123 --name-only
# Show diffstat summary
fgj pr diff 123 --stat`,
fj pr diff 123 --stat`,
Args: cobra.ExactArgs(1),
RunE: runPRDiff,
}