diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2017-02-03 20:27:54 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-03 20:27:54 -0800 |
commit | 19deb66e2c4157d3f84ff724d5c1ef4cc0b17d3e (patch) | |
tree | 3edc41b97fdc7af41ffb0cbb0bf3786fca1165b6 | |
parent | 57fb07e9c041750a82852ca8dde7364fc7083e5b (diff) | |
parent | 71a87ca004a8cb8c3b9655e20320e37c90e89d80 (diff) | |
download | servo-19deb66e2c4157d3f84ff724d5c1ef4cc0b17d3e.tar.gz servo-19deb66e2c4157d3f84ff724d5c1ef4cc0b17d3e.zip |
Auto merge of #15376 - indygreg:hgignore, r=Wafflespeanut
Add .hgignore file
The Firefox repository now contains a vendored copy of the Servo
repository. The Firefox repository is canonically stored in
Mercurial. If someone attempts to do Servo things in a checkout of
the Firefox repository, they get a bunch of untracked files because
there is no .hgignore file.
This commit ports the .gitignore file to Mercurial.
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/15376)
<!-- Reviewable:end -->
-rw-r--r-- | .hgignore | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/.hgignore b/.hgignore new file mode 100644 index 00000000000..32cd546b4a5 --- /dev/null +++ b/.hgignore @@ -0,0 +1,30 @@ +^\.servo +^\.cargo +^\.servobuild +^target/ +^ports/android/bin +^ports/android/libs +^ports/android/local.properties +^ports/android/obj +^python/_virtualenv +^python/tidy/servo_tidy\.egg-info +~$ +\.pkl$ +\.pyc$ +\.swp$ +\.swo$ +\.csv$ + +\.DS_Store$ +Servo\.app/ +\.config\.mk\.last$ +/glfw + +# Editors + +# IntelliJ +\.idea +\.iws$ + +# VSCode +\.vscode |