What is GitHub Explain in Brief

dlight

New Member
Joined
Mar 7, 2020
Messages
1
Reaction score
0
Credits
0
Brief what is GitHub ?

Is it useful for linux dev ?

What are the elements ?
 


jackvadan

New Member
Joined
Mar 7, 2020
Messages
1
Reaction score
1
Credits
0
GitHub is a code hosting platform for collaboration and version control.

GitHub lets you (and others) work together on projects.

GitHub essentials are:

Repositories
Branches
Commits
Pull Requests
Git (the version control software GitHub is built on)

Note:A a great way to learn GitHub, before working on larger projects, is to open pull requests in your own repository and merge them yourself.

After merging you can delete the branch by clicking a "Delete branch button".
For more Info: https://dlightdaily.blogspot.com/p/what-is-github-explained.html
 

Tolkem

Well-Known Member
Joined
Jan 6, 2019
Messages
1,526
Reaction score
1,252
Credits
11,142

dos2unix

Well-Known Member
Joined
May 3, 2019
Messages
1,913
Reaction score
1,513
Credits
13,136
The main thing github is/does source code versioning/management/control.

You always have your source code "checked in" even if your local computer crashes and loses everything.

Everytime you make changes you can "check in" different version. If something breaks, you can go back and see what changes were made.
 

LanDownUnda

New Member
Joined
Mar 10, 2020
Messages
2
Reaction score
0
Credits
0
GitHub is one of many platforms that you can use for your version control. Another competitor is an Atlassian tool called Bitbucket.

Both GitHub and BitBucket based around GIT. Check it out here --- > Git on Wikipedia
 


Top