I have a repository with a file, Hello.java
. 我有一個帶有文件Hello.java
的存儲庫。 When I compile it, an additional Hello.class
file is generated. 當我編譯它時,會生成一個附加的Hello.class
文件。 java
I created an entry for Hello.class
in a .gitignore
file. 我在.gitignore
文件中爲Hello.class
建立了一個條目。 However, the file still appears to be tracked. 可是,該文件彷佛仍被跟蹤。 git
How can I make Git ignore Hello.class
? 如何使Git忽略Hello.class
? app