Hacktoberfest 2026:メンテナが10月に向けて印を付けた、オープンで初心者向けの issue。 Hacktoberfest の issue を見る

Doesn't notice if a file is deleted outright

オープン
#5 コメント 0 件 リアクション 0 件 担当者 0 名 GitHub で見る

まだ誰も着手していません。

評価

難易度
3/5
見積もり時間
1〜2日
初心者へのやさしさ
48/100
issue の種類
バグ
明瞭さ
おおむね明確
活発さ
停滞
技術スタック
cpp
領域
cli

調査の方向性

Start by reproducing the deletion case with sudo dnf diff example-tool and the more specific file path shown in the report. Compare the output before and after removing /etc/example.conf; done means the deleted file is reported with its full contents, matching the demonstrated git diff behavior.

索引モデルが issue の本文から書いたものです。

説明

If I have a package example-tool installed that owns a file /etc/example.conf, then any edits I make to /etc/example.conf will be shown when running sudo dnf diff example-tool. (Or the more specific sudo dnf diff example-tool /etc/example.conf.)

But not so, if the file is deleted outright:

$ sudo sh -c "echo '\n# Additional config\n' >> /etc/example.conf"
$ sudo dnf diff example-tool
--- /etc/example.conf	2025-09-18 04:59:46.000000000 -0400
+++ /etc/example.conf	2026-03-21 14:12:59.628137746 -0400
@@ -150,3 +150,4 @@
 stuff stuff stuff
+
+# Additional config
+

$ sudo rm /etc/example.conf
$ sudo dnf diff example-tool
Updating and loading repositories:
Repositories loaded.
No changes in 'example-tool'.

Seems like it should emulate git in that scenario, and show the entire file's contents as deleted:

$ mkdir -p /tmp/deletion-test
$ cd /tmp/deletion-test
$ git init
$ cp /etc/os-release .
$ git add os-release
$ git commit -m "import"
$ rm os-release
$ git diff
diff --git a/os-release b/os-release
deleted file mode 100644
index dafa4f4..0000000
--- a/os-release
+++ /dev/null
@@ -1,20 +0,0 @@
-NAME="Fedora Linux"
-VERSION="43 (Forty Three)"
-RELEASE_TYPE=stable
-ID=fedora
-VERSION_ID=43
-VERSION_CODENAME=""
-PRETTY_NAME="Fedora Linux 43 (Forty Three)"
-ANSI_COLOR="0;38;2;60;110;180"
-LOGO=fedora-logo-icon
-CPE_NAME="cpe:/o:fedoraproject:fedora:43"
-DEFAULT_HOSTNAME="fedora"
-HOME_URL="https://fedoraproject.org/"
-DOCUMENTATION_URL="https://docs.fedoraproject.org/en-US/fedora/f43/"
-SUPPORT_URL="https://ask.fedoraproject.org/"
-BUG_REPORT_URL="https://bugzilla.redhat.com/"
-REDHAT_BUGZILLA_PRODUCT="Fedora"
-REDHAT_BUGZILLA_PRODUCT_VERSION=43
-REDHAT_SUPPORT_PRODUCT="Fedora"
-REDHAT_SUPPORT_PRODUCT_VERSION=43
-SUPPORT_END=2026-12-02
主要言語
C++
スター
5
フォーク
2
PR マージ指標
30日以内にマージされた PR はありません

コントリビューションガイド

このリポジトリのコントリビューションガイドは索引されていません

はじめの一歩

  1. issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
  2. 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
  3. リポジトリをフォークし、ブランチを切って変更します。
  4. issue 番号を参照したプルリクエストを送ります。

似ている issue

C++ の issue をもっと見る

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。