Skip to content

Commit c01a744

Browse files
Merge pull request rails#44486 from ghousemohamed/patch-7
Added missing mention of `.gitattributes` file in Getting Started documentation [ci-skip]
2 parents ce1806d + c2b0864 commit c01a744

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

guides/source/getting_started.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,8 @@ of the files and folders that Rails creates by default:
186186
|test/|Unit tests, fixtures, and other test apparatus. These are covered in [Testing Rails Applications](testing.html).|
187187
|tmp/|Temporary files (like cache and pid files).|
188188
|vendor/|A place for all third-party code. In a typical Rails application this includes vendored gems.|
189-
|.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.|
189+
|.gitattributes|This file defines metadata for specific paths in a git repository. This metadata can be used by git and other tools to enhance their behavior. See the [gitattributes documentation](https://git-scm.com/docs/gitattributes) for more information.|
190+
|.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 information about ignoring files.|
190191
|.ruby-version|This file contains the default Ruby version.|
191192

192193
Hello, Rails!

0 commit comments

Comments
 (0)