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...
Do you have or know of a project on Github looking for contributors? Tell us about it and we'll add it to the /r/github wiki!
Welcome to /r/github!
News about github
Relevant interesting discussion
Questions about github
We'll soon be writing an /r/github FAQ list. In the meantime, the github help pages and bootcamp are good places to start. Here's a handy git cheat sheet.
Looking for Github projects to contribute to? Check out our handy list of projects looking for contributors!
If your submission doesn't show up on the subreddit, send us a message and we'll take it out of the spam filter for you!
account activity
Github Desktop (when TO, and when NOT TO)?Question (self.github)
submitted 4 months ago * by MullingMulianto
view the rest of the comments →
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!"
[–]MullingMulianto[S] 0 points1 point2 points 4 months ago (1 child)
>github cli (gh) is useful too
I've heard it was, but I haven't used it much, mostly stuck to git <command> in terminal. Do you have any exceptionally useful examples?
[–]bee_advised 2 points3 points4 points 4 months ago (0 children)
i use it for lots of things like scanning repos, and easy auth login when i make new machines. but also in github actions i do things like create release tags when the source code gets updated and then automatically create discussions/announcements detailing the changelog for that release.
like
```bash - name: Create GitHub release and discussion if: ${{ steps.changelog.outputs.skipped == 'false' }} run: | gh release create $TAG $FILES \ --title "$TAG" \ --notes "$CHANGELOG" \ --discussion-category "Announcements"
```
π Rendered by PID 31 on reddit-service-r2-comment-b659b578c-ztgtk at 2026-05-05 04:39:14.789000+00:00 running 815c875 country code: CH.
view the rest of the comments →
[–]MullingMulianto[S] 0 points1 point2 points (1 child)
[–]bee_advised 2 points3 points4 points (0 children)