We do not have *.tar.xz, *.tar.gz as part of repositiry, so ignore them all.
Also ignore *.swp, and *.rpm because many of such temporary files are created during development and such files would not be the part of repository.
Signed-off-by: Pratyush Anand panand@redhat.com --- .gitignore | 23 ++++------------------- 1 file changed, 4 insertions(+), 19 deletions(-)
diff --git a/.gitignore b/.gitignore index c13b1aed05ce..3c087dafc049 100644 --- a/.gitignore +++ b/.gitignore @@ -1,19 +1,4 @@ -/eppic_030413.tar.gz -/makedumpfile-1.5.7.tar.gz -/kexec-tools-2.0.8.tar.xz -/kdump-anaconda-addon-005-2-g86366ae.tar.gz -/kdump-anaconda-addon-005-5-gbf53665.tar.gz -/kdump-anaconda-addon-005-8-ge6ea581.tar.gz -/kdump-anaconda-addon-005-9-g6115ca7.tar.gz -/kexec-tools-2.0.9.tar.xz -/makedumpfile-1.5.8.tar.gz -/eppic_050615.tar.gz -/kexec-tools-2.0.10.tar.xz -/kdump-anaconda-addon-005-10-gd16915f.tar.gz -/kdump-anaconda-addon-005-11-g59f9b73.tar.gz -/kdump-anaconda-addon-005-12-g60fa4c1.tar.gz -/kdump-anaconda-addon-005-14-g563e904.tar.gz -/kdump-anaconda-addon-005-16-g586cc82.tar.gz -/kexec-tools-2.0.11.tar.xz -/makedumpfile-1.5.9.tar.gz -/kexec-tools-2.0.12.tar.xz +*.gz +*.xz +*.swp +*.rpm
Hi, Pratyush
On 04/29/16 at 01:26pm, Pratyush Anand wrote:
We do not have *.tar.xz, *.tar.gz as part of repositiry, so ignore them all.
Also ignore *.swp, and *.rpm because many of such temporary files are created during development and such files would not be the part of repository.
Signed-off-by: Pratyush Anand panand@redhat.com
.gitignore | 23 ++++------------------- 1 file changed, 4 insertions(+), 19 deletions(-)
diff --git a/.gitignore b/.gitignore index c13b1aed05ce..3c087dafc049 100644 --- a/.gitignore +++ b/.gitignore @@ -1,19 +1,4 @@ -/eppic_030413.tar.gz -/makedumpfile-1.5.7.tar.gz -/kexec-tools-2.0.8.tar.xz -/kdump-anaconda-addon-005-2-g86366ae.tar.gz -/kdump-anaconda-addon-005-5-gbf53665.tar.gz -/kdump-anaconda-addon-005-8-ge6ea581.tar.gz -/kdump-anaconda-addon-005-9-g6115ca7.tar.gz -/kexec-tools-2.0.9.tar.xz -/makedumpfile-1.5.8.tar.gz -/eppic_050615.tar.gz -/kexec-tools-2.0.10.tar.xz -/kdump-anaconda-addon-005-10-gd16915f.tar.gz -/kdump-anaconda-addon-005-11-g59f9b73.tar.gz -/kdump-anaconda-addon-005-12-g60fa4c1.tar.gz -/kdump-anaconda-addon-005-14-g563e904.tar.gz -/kdump-anaconda-addon-005-16-g586cc82.tar.gz
Every time a new release file is uploaded, fedpkg will automaticlly update the .gitignore files, so deleting them does not help much because they are added automaticlly, I still need manually delete them if we do like this patch is doing.
Thanks Dave
-/kexec-tools-2.0.11.tar.xz -/makedumpfile-1.5.9.tar.gz -/kexec-tools-2.0.12.tar.xz +*.gz +*.xz +*.swp
+*.rpm
2.5.5 _______________________________________________ kexec mailing list kexec@lists.fedoraproject.org http://lists.fedoraproject.org/admin/lists/kexec@lists.fedoraproject.org
Hi Dave,
On 11/05/2016:11:11:22 AM, Dave Young wrote:
Hi, Pratyush
On 04/29/16 at 01:26pm, Pratyush Anand wrote:
We do not have *.tar.xz, *.tar.gz as part of repositiry, so ignore them all.
Also ignore *.swp, and *.rpm because many of such temporary files are created during development and such files would not be the part of repository.
Signed-off-by: Pratyush Anand panand@redhat.com
.gitignore | 23 ++++------------------- 1 file changed, 4 insertions(+), 19 deletions(-)
diff --git a/.gitignore b/.gitignore index c13b1aed05ce..3c087dafc049 100644 --- a/.gitignore +++ b/.gitignore @@ -1,19 +1,4 @@ -/eppic_030413.tar.gz -/makedumpfile-1.5.7.tar.gz -/kexec-tools-2.0.8.tar.xz -/kdump-anaconda-addon-005-2-g86366ae.tar.gz -/kdump-anaconda-addon-005-5-gbf53665.tar.gz -/kdump-anaconda-addon-005-8-ge6ea581.tar.gz -/kdump-anaconda-addon-005-9-g6115ca7.tar.gz -/kexec-tools-2.0.9.tar.xz -/makedumpfile-1.5.8.tar.gz -/eppic_050615.tar.gz -/kexec-tools-2.0.10.tar.xz -/kdump-anaconda-addon-005-10-gd16915f.tar.gz -/kdump-anaconda-addon-005-11-g59f9b73.tar.gz -/kdump-anaconda-addon-005-12-g60fa4c1.tar.gz -/kdump-anaconda-addon-005-14-g563e904.tar.gz -/kdump-anaconda-addon-005-16-g586cc82.tar.gz
Every time a new release file is uploaded, fedpkg will automaticlly update the .gitignore files, so deleting them does not help much because they are added automaticlly, I still need manually delete them if we do like this patch is doing.
Thanks for clarifying. Then we can drop this patch.
Thanks Dave
-/kexec-tools-2.0.11.tar.xz -/makedumpfile-1.5.9.tar.gz -/kexec-tools-2.0.12.tar.xz +*.gz +*.xz +*.swp +*.rpm
Probably, we can have a patch only to add above 4.
~Pratyush