|
| 1 | +From 3e8355111337836c52f6ef121641712d4ca9f6d2 Mon Sep 17 00:00:00 2001 |
| 2 | +From: evaherrada < [email protected]> |
| 3 | +Date: Thu, 21 Apr 2022 15:45:16 -0400 |
| 4 | +Subject: [PATCH] Updated gitignore |
| 5 | + |
| 6 | +--- |
| 7 | + .gitignore | 49 +++++++++++++++++++++++++++++++++++++++---------- |
| 8 | + 1 file changed, 39 insertions(+), 10 deletions(-) |
| 9 | + |
| 10 | +diff --git a/.gitignore b/.gitignore |
| 11 | +index 2c6ddfd..544ec4a 100644 |
| 12 | +--- a/.gitignore |
| 13 | ++++ b/.gitignore |
| 14 | +@@ -1,18 +1,47 @@ |
| 15 | +-# SPDX-FileCopyrightText: 2017 Scott Shawcroft, written for Adafruit Industries |
| 16 | ++# SPDX-FileCopyrightText: 2022 Kattni Rembor, written for Adafruit Industries |
| 17 | + # |
| 18 | +-# SPDX-License-Identifier: Unlicense |
| 19 | ++# SPDX-License-Identifier: MIT |
| 20 | + |
| 21 | ++# Do not include files and directories created by your personal work environment, such as the IDE |
| 22 | ++# you use, except for those already listed here. Pull requests including changes to this file will |
| 23 | ++# not be accepted. |
| 24 | ++ |
| 25 | ++# This .gitignore file contains rules for files generated by working with CircuitPython libraries, |
| 26 | ++# including building Sphinx, testing with pip, and creating a virual environment, as well as the |
| 27 | ++# MacOS and IDE-specific files generated by using MacOS in general, or the PyCharm or VSCode IDEs. |
| 28 | ++ |
| 29 | ++# If you find that there are files being generated on your machine that should not be included in |
| 30 | ++# your git commit, you should create a .gitignore_global file on your computer to include the |
| 31 | ++# files created by your personal setup. To do so, follow the two steps below. |
| 32 | ++ |
| 33 | ++# First, create a file called .gitignore_global somewhere convenient for you, and add rules for |
| 34 | ++# the files you want to exclude from git commits. |
| 35 | ++ |
| 36 | ++# Second, configure Git to use the exclude file for all Git repositories by running the |
| 37 | ++# following via commandline, replacing "path/to/your/" with the actual path to your newly created |
| 38 | ++# .gitignore_global file: |
| 39 | ++# git config --global core.excludesfile path/to/your/.gitignore_global |
| 40 | ++ |
| 41 | ++# CircuitPython-specific files |
| 42 | + *.mpy |
| 43 | +-.idea |
| 44 | ++ |
| 45 | ++# Python-specific files |
| 46 | + __pycache__ |
| 47 | +-_build |
| 48 | + *.pyc |
| 49 | ++ |
| 50 | ++# Sphinx build-specific files |
| 51 | ++_build |
| 52 | ++ |
| 53 | ++# This file results from running `pip -e install .` in a local repository |
| 54 | ++*.egg-info |
| 55 | ++ |
| 56 | ++# Virtual environment-specific files |
| 57 | + .env |
| 58 | +-.python-version |
| 59 | +-build*/ |
| 60 | +-bundles |
| 61 | ++ |
| 62 | ++# MacOS-specific files |
| 63 | + *.DS_Store |
| 64 | +-.eggs |
| 65 | +-dist |
| 66 | +-**/*.egg-info |
| 67 | ++ |
| 68 | ++# IDE-specific files |
| 69 | ++.idea |
| 70 | + .vscode |
| 71 | ++*~ |
| 72 | +-- |
| 73 | +2.25.1 |
| 74 | + |
0 commit comments