[Cython] Fwd: .gitignore file in github repo
Hello, All! Is there a way for me to contribute to the C files in the Cython folder? When I changed them, it does not show in the changed files list (e.g. in Git GUI). Why are the C files put in the gitignore file? Omar Sweidan ___ cython-devel mailing list cython-devel@python.org https://mail.python.org/mailman/listinfo/cython-devel
Re: [Cython] Fwd: .gitignore file in github repo
I assume that was done to avoid including all the C files that the Cython compiler generates. You can specifically tell git not to ignore your C file using a ! pattern in the .gitignore file. More details here: https://git-scm.com/docs/gitignore. -- Warm Regards Prakhar Goel ___ cython-devel mailing list cython-devel@python.org https://mail.python.org/mailman/listinfo/cython-devel
Re: [Cython] Fwd: .gitignore file in github repo
omár sweidán schrieb am 08.01.20 um 22:47: > Is there a way for me to contribute to the C files in the Cython folder? > When I changed them, it does not show in the changed files list (e.g. in > Git GUI). Why are the C files put in the gitignore file? We exclude all files that are generated by Cython. There is no use in changing them, and they will be overwritten by a rebuild. Change the Python files instead that they are generated from. Stefan ___ cython-devel mailing list cython-devel@python.org https://mail.python.org/mailman/listinfo/cython-devel
Re: [Cython] Fwd: .gitignore file in github repo
I'm sorry, I thought they aren't generated. On Fri, Jan 10, 2020 at 11:27 AM Stefan Behnel wrote: > omár sweidán schrieb am 08.01.20 um 22:47: > > Is there a way for me to contribute to the C files in the Cython folder? > > When I changed them, it does not show in the changed files list (e.g. in > > Git GUI). Why are the C files put in the gitignore file? > > We exclude all files that are generated by Cython. There is no use in > changing them, and they will be overwritten by a rebuild. Change the Python > files instead that they are generated from. > > Stefan > ___ > cython-devel mailing list > cython-devel@python.org > https://mail.python.org/mailman/listinfo/cython-devel > ___ cython-devel mailing list cython-devel@python.org https://mail.python.org/mailman/listinfo/cython-devel