Fix .gitignore files to not ignore subdirectory matches
The previous used .gitignore files were mathing some files that were actually already in the repository (e.g., hostapd/logwatch/hostapd). Avoid this by listing the conflicting entries in the root directory .gitignore with full path.
This commit is contained in:
parent
bf0ed63f3f
commit
01cf713e51
5 changed files with 14 additions and 18 deletions
14
.gitignore
vendored
14
.gitignore
vendored
|
@ -1,3 +1,17 @@
|
||||||
*.o
|
*.o
|
||||||
*.d
|
*.d
|
||||||
*~
|
*~
|
||||||
|
wpa_supplicant/eapol_test
|
||||||
|
wpa_supplicant/preauth_test
|
||||||
|
wpa_supplicant/wpa_cli
|
||||||
|
wpa_supplicant/wpa_passphrase
|
||||||
|
wpa_supplicant/wpa_supplicant
|
||||||
|
wpa_supplicant/wpa_priv
|
||||||
|
wpa_supplicant/wpa_gui/Makefile
|
||||||
|
wpa_supplicant/wpa_gui/wpa_gui
|
||||||
|
wpa_supplicant/wpa_gui-qt4/Makefile
|
||||||
|
wpa_supplicant/wpa_gui-qt4/wpa_gui
|
||||||
|
hostapd/hostapd
|
||||||
|
hostapd/hostapd_cli
|
||||||
|
hostapd/hlr_auc_gw
|
||||||
|
hostapd/nt_password_hash
|
||||||
|
|
7
hostapd/.gitignore
vendored
7
hostapd/.gitignore
vendored
|
@ -1,7 +0,0 @@
|
||||||
*.d
|
|
||||||
.config
|
|
||||||
driver_conf.c
|
|
||||||
hostapd
|
|
||||||
hostapd_cli
|
|
||||||
hlr_auc_gw
|
|
||||||
nt_password_hash
|
|
7
wpa_supplicant/.gitignore
vendored
7
wpa_supplicant/.gitignore
vendored
|
@ -1,8 +1 @@
|
||||||
*.d
|
|
||||||
.config
|
.config
|
||||||
eapol_test
|
|
||||||
preauth_test
|
|
||||||
wpa_cli
|
|
||||||
wpa_passphrase
|
|
||||||
wpa_supplicant
|
|
||||||
wpa_priv
|
|
||||||
|
|
2
wpa_supplicant/wpa_gui-qt4/.gitignore
vendored
2
wpa_supplicant/wpa_gui-qt4/.gitignore
vendored
|
@ -1,6 +1,4 @@
|
||||||
.moc
|
.moc
|
||||||
.obj
|
.obj
|
||||||
.ui
|
.ui
|
||||||
Makefile
|
|
||||||
wpa_gui
|
|
||||||
qrc_icons.cpp
|
qrc_icons.cpp
|
||||||
|
|
2
wpa_supplicant/wpa_gui/.gitignore
vendored
2
wpa_supplicant/wpa_gui/.gitignore
vendored
|
@ -1,5 +1,3 @@
|
||||||
.moc
|
.moc
|
||||||
.obj
|
.obj
|
||||||
.ui
|
.ui
|
||||||
Makefile
|
|
||||||
wpa_gui
|
|
||||||
|
|
Loading…
Reference in a new issue