-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a gitignore for build artifacts #66
Comments
I created a pull request on Github for this, but if I understand correctly, you are only interacting through emails. So here is the content of my PR here, in case you are interested in adding this
|
Loric Brevet ***@***.***> wrote:
I created a pull request on Github for this, but if I understand correctly, you are only interacting through emails. So here is the content of my PR here, in case you are interested in adding this `.gitignore`.
```
# libs
*.o
*.ko
*.obj
*.elf
# objects
*.dll
*.so
*.so.*
*.dylib
# executables
*.exe
*.out
*.hex
vi
```
Thanks. I usually use a .gitignore file that ignores itself
and do not store it in the repository. In any case, I shall
commit a shorter version.
Ali
|
Thank you, I will close this issue as your proposed gitignore is good enough for now. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello,
When building the project with
make
, it leaves a lot of build-related files untracked in git.This would benefit from having a
.gitignore
to avoid listing them in git.Would you be accepting a PR for that?
Thanks
The text was updated successfully, but these errors were encountered: