This commit is contained in:
Ricardo Fernández Serrata 2026-09-01 12:26:53 -07:00 committed by GitHub
commit 83b100b940
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 40 additions and 0 deletions

View file

@ -59,6 +59,7 @@
- [`git rename-remote`](#git-rename-remote)
- [`git repl`](#git-repl)
- [`git reset-file`](#git-reset-file)
- [`git resolve`](#git-resolve)
- [`git root`](#git-root)
- [`git rscp`](#git-scp)
- [`git scp`](#git-scp)
@ -1426,6 +1427,16 @@ or reset one file to certain commit
$ git reset-file .htaccess dc82b19
```
## git resolve
On default text-editor, open unmerged ("both modified" `status`) files in working-directory that have errors (e.g. conflict-markers),
then auto-stage all (in full work-tree) unmerged files without errors,
and finally [`continue`](#git-continue) (if possible).
```bash
$ git resolve
```
## git mr
Checks out a merge request from GitLab, or a pull request from Forgejo/Codeberg.

29
bin/git-resolve Executable file
View file

@ -0,0 +1,29 @@
#!/usr/bin/env bash
set -eufo pipefail
IFS=$' \t'
#shellcheck disable=SC2046
# ignore files outside WD, to avoid overload
git diff --name-only --diff-filter=U --relative -z |
while IFS= read -r -d '' f; do
# `--quiet` implies `--exit-code` which is incompatible with `--check`;
# however, it could be special-cased internally, so it could work
# (untested)
if ! git -c core.whitespace='' diff --check -- "$f" &>/dev/null; then
printf '%s\0' "$f"
fi
done |
# WARN: `-r` is too new
# https://github.com/tj/git-extras/pull/1233#issuecomment-3957233996
xargs -0r $(git var GIT_EDITOR)
# user might have removed other conflict-markers,
# so check full WT
git diff --name-only --diff-filter=U -z |
while IFS= read -r -d '' f; do
# WARN: `f` is relative to repo root!
# this might be broken
if git -c core.whitespace='' diff --check -- "$f"; then
git add -- "$f"
fi
done