Git Repo Search (cli tool)
Made a small rust binary to find git repository by name so that I can pipe it through fzf, select one, and clone it.[alias]
find = !sh -c 'git-repo-search \"$@\" | fzf | awk \"{print \\$NF}\"' --
git find tokio | xargs git clone
# or
git clone $(git find tokio)
Norgolith
I finished the grand refactor PR
Jujutsu?
I'm considering jujutsu seriously now.
Because I made a real-word merge conflict situation with my two branches in forked version of norgolith.
Situation:
norg-dialect
branch adds v2 converter on top of origin.refactor/cli-commands
branch completely refactors entire codebase.
I can:
merge two and resolve conflicts
squash-merge
norg-dialect
to origin.
But I don't want to squash all my commits in norg-dialect
branch