1. 17 5月, 2019 2 次提交
    • M
      vim: add extra session file Sessionx.vim (#3058) · cdab24d9
      Matan Nassau 提交于
      from vim's documentation on `:mksession` (:help :mksession):
      
       ...
      
       10. If a file exists with the same name as the Session file, but ending
           in "x.vim" (for eXtra), executes that as well.  You can use *x.vim
           files to specify additional settings and actions associated with a
           given Session, such as creating menu items in the GUI version.
      
      we already have Session.vim ignored.  the Sessionx.vim file, like
      Session.vim, is a user file.  a user would generally want that file kept
      private or for themselves, and the public or a team fetching from or
      sharing the repository generally have no interest in a file relevant
      only to a particular user.  so it's a good idea to get git to help us
      avoid mistakenly sharing the file.
      cdab24d9
    • M
      6cb96f4a
  2. 12 5月, 2019 12 次提交
  3. 10 5月, 2019 1 次提交
  4. 09 5月, 2019 2 次提交
  5. 05 5月, 2019 1 次提交
  6. 02 5月, 2019 2 次提交
  7. 28 4月, 2019 1 次提交
  8. 26 4月, 2019 1 次提交
  9. 24 4月, 2019 1 次提交
  10. 22 4月, 2019 1 次提交
    • Z
      Update R.gitignore (#3034) · 26f49b0c
      zy26 提交于
      ignore knitr and R markdown default cache directories in subdirectories
      26f49b0c
  11. 08 4月, 2019 1 次提交
  12. 27 3月, 2019 1 次提交
  13. 24 3月, 2019 1 次提交
    • L
      [Unity] Added leading slashes to ignored directories so that valid... · 56e3f5a7
      Lucas Steer 提交于
      [Unity] Added leading slashes to ignored directories so that valid subdirectories aren't ignored incorrectly (#2980)
      
      * Added leading slashes to ignored directories so that valid subdirectories aren't ignored incorrectly
      
      * Added comment to recommend .gitignore placement; added leading slash for AssetStoreTools rule
      
      * Added a leading slash to never ignore .meta files in the root Asset folder
      56e3f5a7
  14. 22 3月, 2019 1 次提交
  15. 21 3月, 2019 1 次提交
    • J
      Remove wwwroot/lib exclusion for ASP.NET Core (#3009) · 7f765e3f
      Jimmy Lewis 提交于
      ASP.NET Core projects no longer use Bower by default (since Bower is now deprecated), and instead create static files in the wwwroot/lib path.  This path is can also be used by convention for ASP.NET Core developers, and since it's no longer populated by Bower, it is unituitive to be excluded by default.
      
      This change removes the lines added by #2307.
      
      **Reasons for making this change:**
      
      VS default flow is now broken by excluding files required to run an ASP.NET Core project.
      
      **Links to documentation supporting these rule changes:**
      
      The changes to the ASP.NET Core templates was tracked by https://github.com/aspnet/templating/issues/48.
      7f765e3f
  16. 18 3月, 2019 2 次提交
  17. 15 3月, 2019 1 次提交
    • A
      Add more standard ignored files for Julia (#2992) · 76512d9b
      Alex Arslan 提交于
      * Add more standard ignored files for Julia
      
      In particular, this adds documentation build artifacts generated by Documenter.jl as well as Manifest.toml, which can appear in docs/, in test/, or at the top level.
      
      * Clarify the intent of each ignored item
      
      Also add a few more build artifacts from BinaryProvider/BinDeps.
      76512d9b
  18. 14 3月, 2019 4 次提交
  19. 13 3月, 2019 1 次提交
  20. 11 3月, 2019 3 次提交
    • J
      Update VisualStudio.gitignore file (#2975) · b960d3c7
      José Fabio Martinez Gonzalez 提交于
      * Update VisualStudio.gitignore file
      b960d3c7
    • C
      Remove Rider (idea) ignore statements from VS (#2991) · 96baa630
      Coskun Sunali 提交于
      Rider has its own ignore file, so does Visual Studio. The ignore statements for Rider (idea) IDE should be removed from Visual Studio .gitignore file template.
      96baa630
    • J
      Add ignore rules for Pipenv (#2977) · 7079791a
      Jarry Shaw 提交于
      * Add ignore rules for Pipenv
      
      Pipenv uses Pipfile.lock to maintain Python package information
      (metadata, hash, etc.) installed as described in Pipfile. Thus,
      Pipfile.lock may vary on different operating systems, platforms
      when collaborating. This PR adds Pipfile.lock into the Python
      default gitignore. See http://pipenv.org
      
      * Update Python.gitignore
      
      Not to ignore Pipfile.lock in default, but explain
      when and why it should be ignored in case of
      collaboration. (adjusted according to comment
      in github/gitignore#2977 by @drothmaler )
      
      * Apply suggestions from code review
      Co-Authored-By: NJarryShaw <jarryshaw@icloud.com>
      
      * Update Python.gitignore
      
      As suggested by @shiftkey , elaborate on the problems that users might see with `Pipfile.lock`.
      7079791a