git
git copied to clipboard
Git Source Code Mirror - This is a publish-only repository but pull requests can be turned into patches to the mailing list via GitGitGadget (https://gitgitgadget.github.io/). Please follow Documentat...
Goal is to deliver fsmonitor for Linux that is on par with fsmonitor for Windows and Mac OS. This patch set builds upon previous work for done for Windows and...
"--object-only" option was added for "git ls-tree" in 2.36: https://github.com/git/git/blob/6cd33dceed60949e2dbc32e3f0f5e67c4c882e1e/builtin/ls-tree.c#L350-L351, but wrongly named as "--oid-only" in release notes: https://github.com/git/git/blob/004e0f790f947c9c511a9ac4f905021c7dbfa9e1/Documentation/RelNotes/2.36.0.txt#L100-L101 Fixes this.
Improvements: 1. Remove the sexist example ("Barbie... wants to go shopping") 2. Show real merge marker contents, rather than e.g. "yours:sample.txt". 3. Swap yours/theirs terms for source/target. 4. General wordsmithing....
Despite 0b18023 addressing a regression from 59d85a2, the issue described in https://lore.kernel.org/all/[email protected]/T/ still persists as described: compdef _git ga=git-add ga ga __git_find_on_cmdline:[:16: unknown condition: -lt The suggested fix to set...
Add support for -S/--gpg-sign/--no-gpg-sign command line options and commit.gpgsign configuration. These are passed to invocations of `git commit-tree`. cc: Avery [email protected] Thanks for taking the time to contribute to Git!...
I fixed a simple typo error in korean translation of `ko.po` file.
This change adds support for passing --gpg-sign, --no-gpg-sign, and -S to the test_commit function When gpg signing support is added to contrib/subtree, this will be used to sign the test...
GetVersion has its behavior changed in Windows 8 and above anyway, so this is the right way to do it now. The previous way returns the wrong value in Windows...
config: remote: use '@' in 'fetch' field as this remote's name Before: ``` [remote "origin"] url = [email protected]:phd/git fetch = +refs/heads/*:refs/remotes/origin/* [remote "upstream"] url = [email protected]:git/git fetch = +refs/heads/*:refs/remotes/upstream/* ```...
The command has taken pathspecs, not just filenames, since f0096c06bcd (Convert read_tree{,_recursive} to support struct pathspec, 2011-03-25). Signed-off-by: Adam Johnson CC: Elijah Newren