1. ホーム
  2. python

[解決済み] git リポジトリの .pyc ファイルを無視する。

2022-01-30 05:12:05

質問

を無視するにはどうすればよいですか? .pyc ファイルを作成することはできますか?

に置くと .gitignore は動作しません。コミットをチェックせず、アントラックにする必要があります。

どのように解決するのですか?

の中に入れてください。 .gitignore . しかし gitignore(5) のマンページがあります。

  ·   If the pattern does not contain a slash /, git treats it as a shell
       glob pattern and checks for a match against the pathname relative
       to the location of the .gitignore file (relative to the toplevel of
       the work tree if not from a .gitignore file).

  ·   Otherwise, git treats the pattern as a shell glob suitable for
       consumption by fnmatch(3) with the FNM_PATHNAME flag: wildcards in
       the pattern will not match a / in the pathname. For example,
       "Documentation/*.html" matches "Documentation/git.html" but not
       "Documentation/ppc/ppc.html" or
       "tools/perf/Documentation/perf.html".

そのため、適切な *.pyc エントリに入れるか、あるいは .gitignore ファイルを、リポジトリのルートから続くディレクトリのいずれかに作成します。