Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jakeburden/gitignore
https://github.com/jakeburden/gitignore
Last synced: 17 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/jakeburden/gitignore
- Owner: jakeburden
- Created: 2015-03-11T12:29:03.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-11T13:56:41.000Z (almost 10 years ago)
- Last Synced: 2024-04-16T00:30:50.963Z (9 months ago)
- Size: 121 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.markdown
Awesome Lists containing this project
README
gitignore
=========What is .gitignore?
-----------If you create a file in your repository named .gitignore, Git uses it to
determine which files and directories to ignore, before you make a commit.Purpose
-------Quickly grabbing a boilerplate .gitignore for your project.
Usage
-----The two fastest ways to utilize this repo are by using
[curl](http://en.wikipedia.org/wiki/CURL) and
[wget](http://en.wikipedia.org/wiki/Wget).The shortened url [git.io/ignore](git.io/ignore) links to the raw contents of
[gitignore/gitignore](https://github.com/jekrb/gitignore/blob/master/gitignore).Now `cd` into your project directory and follow one of the commands below.
(ignore the `$` symbol)### Using curl
$ curl -L git.io/ignore -o .gitignore
### Using wget
$ wget git.io/ignore -O .gitignore
Why?
----Let progammers do a mundane task enough times and they will find a way to
automate it.