Skip to content
This repository was archived by the owner on Sep 1, 2022. It is now read-only.

Commit 0793cca

Browse files
committed
remove additionally
1 parent 31805b4 commit 0793cca

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

responses/04b_add-gitignore.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ From time to time, there are files you don't want Git to check in to GitHub. You
66

77
Git uses a file called `.gitignore` to decide which files and directories to ignore when committing. Keep files containing sensitive data, like configuration or `env` files, out of your repositories. This is one way to promote security best practices.
88

9-
Additionally, the `.gitignore` file can, and should, be committed into your repository. By sharing this file and making it part of your code, it will also help others. Other users that contribute to the repository will also avoid committing sensitive data. There are many examples of `.gitignore` files available for you to use in your own repositories. You can find them in the [gitignore](https://github.com/github/gitignore) repository.
9+
The `.gitignore` file can, and should, be committed into your repository. By sharing this file and making it part of your code, it will also help others. Other users that contribute to the repository will also avoid committing sensitive data. There are many examples of `.gitignore` files available for you to use in your own repositories. You can find them in the [gitignore](https://github.com/github/gitignore) repository.
1010

1111
## Step 5: Ignore files
1212

13-
In this pull request, I'm adding a `.gitignore` file. Files ending with `.env` commonly include sensitive data. This helps you keep files with sensitive data secure and private. Let's add those files to the `.gitignore`.
13+
In this pull request, I'm adding a `.gitignore` file. Files ending with `.env` commonly include sensitive data. This helps you keep files with sensitive data secure and private. Let's add those files to the `.gitignore`.
1414

1515
### :keyboard: Activity: Updating the .gitignore file
1616

0 commit comments

Comments
 (0)