aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Moss <maclover7@users.noreply.github.com>2016-08-28 21:07:04 -0400
committerGitHub <noreply@github.com>2016-08-28 21:07:04 -0400
commit8d251029cefaad559fb92c3ac529c6d490e4d280 (patch)
tree309188c283a39fa5b323022118bb30a3e7ae77fd
parent9aa6a75eef4f6b4c6f840ec626d31f308e7feba6 (diff)
parent7425aaaec3880b811a0b14d1222480efe2b33b66 (diff)
downloadrails-8d251029cefaad559fb92c3ac529c6d490e4d280.tar.gz
rails-8d251029cefaad559fb92c3ac529c6d490e4d280.tar.bz2
rails-8d251029cefaad559fb92c3ac529c6d490e4d280.zip
Merge pull request #26310 from kjellberg/guides
Add .gitignore to "files & purpose" list - getting started docs
-rw-r--r--guides/source/getting_started.md1
1 files changed, 1 insertions, 0 deletions
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!
-------------