This website requires JavaScript.
Explore
Help
Register
Sign In
tyler.durden
/
audk
mirror of
https://github.com/acidanthera/audk.git
Watch
1
Star
0
Fork
You've already forked audk
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
14672c34bd
audk
/
.gitignore
8 lines
68 B
Plaintext
Raw
Normal View
History
Unescape
Escape
EDK II: Add .gitignore While edk2 is still maintained in SVN, Many edk2 developers use git for their main workflow, using the official mirrors. Add a .gitignore to the EDK II root, BaseTools and Conf directories to prevents files generated as part of the build from cluttering up "git status" output. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Ryan Harkin <ryan.harkin@linaro.org> [removed Linaro-specific bits, rework for upstream] Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org> Reviewed-by: Jordan Justen <jordan.l.justen@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16213 6f19259b-4bc3-4df7-8a09-765794883524
2014-10-14 18:08:15 +02:00
Build/
edk2: Add .DS_Store to .gitignore for macOS https://bugzilla.tianocore.org/show_bug.cgi?id=558 macOS may generate .DS_Store files in directories. The .gitignore file is updated to ignore these .DS_Store files. Cc: Andrew Fish <afish@apple.com> Cc: Liming Gao <liming.gao@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: Andrew Fish <afish@apple.com>
2017-05-04 22:43:32 +02:00
.DS_Store
.gitignore: Ignore python compiled files, extdeps, and vscode https://bugzilla.tianocore.org/show_bug.cgi?id=2315 Update .gitignore to ignore .pyc files and __pycache__ directories. Python based plugins can be added to any package or platform, so these files and directories may be present outside of BaseTools. Ignore _extdep directories that are generated by the pytool external dependency feature. Ignore .vscode directories generated by the VS Code editor. Cc: Andrew Fish <afish@apple.com> Cc: Laszlo Ersek <lersek@redhat.com> Cc: Leif Lindholm <leif.lindholm@linaro.org> Signed-off-by: Kinney <michael.d.kinney@intel.com> Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org> Reviewed-by: Philippe Mathieu-Daude <philmd@redhat.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
2019-09-25 07:34:18 +02:00
*_extdep/
*.pyc
__pycache__/
tags/
.vscode/