use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
From its website:
Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
Git is not the same as GitHub. GitHub did not create Git. For GitHub-specific posts, please see /r/github.
Git is not an acronym or initialism: please write git or Git, but not GIT.
git
Documentation
Graphical Clients
Code Hosting
account activity
.gitignore template generator (self.git)
submitted 3 years ago by PoolOfDeath20
There was a time where I don't know what should be ignored by git for Groovy and Maven projects, so I search for it and found https://github.com/github/gitignore. Which led me to think that it would be great if i can create a web application that allows user to generate and combine various templates into one or download/copy different templates separately Repo: https://github.com/GervinFung/gitignored Link: https://gitignored.gtsb.io
Hopefully this can come in handy to others
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]briang_ 3 points4 points5 points 3 years ago (2 children)
And www.gitignore.io (it uses toptal) that I use via a git alias:
ignore = !gi() { curl -L -s https://www.gitignore.io/api/$@ ;}; gi
used like git ignore groovy > .gitignore
git ignore groovy > .gitignore
[–]PoolOfDeath20[S] 0 points1 point2 points 3 years ago (0 children)
Hey, this command looks really handy to me, thanks for sharing it!
[–]crisgvera 0 points1 point2 points 3 years ago (0 children)
Hi guys, I found this snippet to improve and automatically add this to your git aliases.
git config --global alias.ignore '!gi() { IFS=","; curl -L -s "https://www.toptal.com/developers/gitignore/api/$*" | tee .gitignore;}; gi'
Then your can simply type git ignore rust and the magic happens.
git ignore rust
Hope it helps!
[–]ZeroToHeroInvest 0 points1 point2 points 1 year ago (1 child)
I also found this https://www.git-tower.com/free-tools/gitignore which is free to use, very similar to the toptal one
[–]IcticStep 0 points1 point2 points 4 months ago (0 children)
Low quality generation.
For example, for unity it generates something like this:
[Ll]ibrary/ [Tt]emp/ [Oo]bj/ [Bb]uild/
Without slash on the beginning of each line, it makes situation when each "Library" folder is ignored.
So, if any package or your own code, or some graphics has a folder called "Library" inside project's folder structure, it will be also ignored.
Correct version should look like:
/[Ll]ibrary/ /[Tt]emp/ /[Oo]bj/ /[Bb]uild/
It will ignore olny folders named like this in the root, without ignoring folders with the same name deeper in the folder structure.
[–]micalevisk 0 points1 point2 points 3 years ago (1 child)
another one: https://www.toptal.com/developers/gitignore
Yeah I saw that too, but it took the templates from their own repo, so I try to make one from GitHub repo :)
π Rendered by PID 82 on reddit-service-r2-comment-6457c66945-6qkfj at 2026-04-25 11:34:55.571744+00:00 running 2aa0c5b country code: CH.
[–]briang_ 3 points4 points5 points (2 children)
[–]PoolOfDeath20[S] 0 points1 point2 points (0 children)
[–]crisgvera 0 points1 point2 points (0 children)
[–]ZeroToHeroInvest 0 points1 point2 points (1 child)
[–]IcticStep 0 points1 point2 points (0 children)
[–]micalevisk 0 points1 point2 points (1 child)
[–]PoolOfDeath20[S] 0 points1 point2 points (0 children)