this post was submitted on 26 Jun 2023
32 points (90.0% liked)
Asklemmy
43851 readers
1418 users here now
A loosely moderated place to ask open-ended questions
Search asklemmy ๐
If your post meets the following criteria, it's welcome here!
- Open-ended question
- Not offensive: at this point, we do not have the bandwidth to moderate overtly political discussions. Assume best intent and be excellent to each other.
- Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
- Not ad nauseam inducing: please make sure it is a question that would be new to most members
- An actual topic of discussion
Looking for support?
Looking for a community?
- Lemmyverse: community search
- sub.rehab: maps old subreddits to fediverse options, marks official as such
- !lemmy411@lemmy.ca: a community for finding communities
~Icon~ ~by~ ~@Double_A@discuss.tchncs.de~
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
While GitHub can do a lot of funky stuff, a GitHub "repo" it is effictivly an project folder. So usually if you open a project (usually called "creatorname/Projectname"), there is a bunch of files. Below that is usually the documentation. It Is part of the project but GitHub is so nice to render it for you. Usually there should be an explanation what this project is and usually a rough explanation what to do with it. I say rough because depending on the popularity and the target audience you get everything from "download here for your OS" buttons to "adapt for your usecase compile with gcc and have fun"
As a user that is kind of it.
Above the files are usually a few tabs.
Code are the files. On the right side is this green button with "get the code" where you can download a zip. But you can usually open the files online and see the raw contents.
Issues are bugs people reported that are in various states or being fixed (or not).
Pull requests are people that contributed code and want the maintainer to review and hopefully integrate into the project.
GitHub uses git for cooperative development. but git is complicated, not necessary to use programs shared in github and while I can use it, I am far from proficient enough to explain it on the the internet.