1GitHub, Inc.
2is a provider of Internet hosting for software development and version control
3using Git. It offers the distributed version control
4and source code management functionality of Git, plus its own features.
5
6founded: 2008
7ceo: Nat firedman (29 oct 2018-)
8written in: Ruby; ECMAscript; Go; C
9Users: 56 million (sep 2020)
10Parent organization: Microsoft corporation
11Founders: Tom Preston-Werner, Chiris Wanstrath,
12Scott Chacon, P.J. Hyett.
1GitHub, Inc. is a United States-based global company that provides hosting
2for software development version control using Git. In 2018, it became a
3subsidiary of Microsoft for US$7.5 billion.
4
5It offers the distributed version control and source code management
6functionality of Git, plus its own features.
1git checkout master
2git checkout master
3git pull origin master
4
5Adding New Features
6git checkout -b my_branch_name
7git add .
8git commit -am "Initial commit"
9git branch
10git push -u origin new_branch_name