From 7425aaaec3880b811a0b14d1222480efe2b33b66 Mon Sep 17 00:00:00 2001 From: Rasmus Kjellberg Date: Mon, 29 Aug 2016 01:25:29 +0200 Subject: [PATCH] Added gitignore to "files & purpose" list [ci skip] --- guides/source/getting_started.md | 1 + 1 file changed, 1 insertion(+) diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index 54421a328c..c4a8eacc57 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -182,6 +182,7 @@ of the files and folders that Rails created by default: |test/|Unit tests, fixtures, and other test apparatus. These are covered in [Testing Rails Applications](testing.html).| |tmp/|Temporary files (like cache and pid files).| |vendor/|A place for all third-party code. In a typical Rails application this includes vendored gems.| +|.gitignore|This file tells git which files (or patterns) it should ignore. See [Github - Ignoring files](https://help.github.com/articles/ignoring-files) for more info about ignoring files. Hello, Rails! -------------