Glen Choo
Glen Choo
I noticed this inconsistency as I was trying to build Git docs with Google's internal build system. This string seems particularly problematic e.g. you can see unnecessary "\\" on https://git-scm.com/docs/git-reflog#_description....
## Description This isn't a problem yet (and might not be), but I'll document it anyway just in case By default, `git log` shows "decorations" for each ref that points...
This version has relatively few changes, and should address all of Jonathan's comments (thanks!). In the final patch, submodule_head is now initialized to NULL [1], which means that in the...
jj doesn't know about commits rewritten on the Git side, e.g. if I have this history: ``` C | B | A ``` and I swap B and C using...
My repo has a remote-tracking branch, e.g. `origin/test`, and I have a local branch `test/something`. When trying to export refs to Git, jj complains with ``` Internal error: Failed to...
Analogous to `git range-diff`, this command would visualize changes in a revset , not just single commits (`obslog`/`interdiff` has that covered). The primary use case for this would be to...
Supporting simple CRUD in submodule store, namely: - Cloning a new, named submodule from a URL - Listing submodules - Looking up a submodule by name - Deleting a submodule...
Config parsing no longer uses global state as of gc/config-context, so the natural next step for libification is to turn that into its own library. This series starts that process...
While I was writing a .gitmodules parser for jj (https://github.com/martinvonz/jj, check it out, it's great!), a reviewer asked what would happen if a submodule had repeated fields (like .path). It...
## Description This improves interop with tools that only understand Git-style conflict markers, e.g. IDEs, `npm`. We would probably make a config option for this, but it might also be...