xxxxxxxxxx
GitHub is a provider of Internet hosting for software development and version control using Git.
It offers the distributed version control and source code management functionality of Git,
plus its own features
xxxxxxxxxx
GitHub, Inc.
is a provider of Internet hosting for software development and version control
using Git. It offers the distributed version control
and source code management functionality of Git, plus its own features.
founded: 2008
ceo: Nat firedman (29 oct 2018-)
written in: Ruby; ECMAscript; Go; C
Users: 56 million (sep 2020)
Parent organization: Microsoft corporation
Founders: Tom Preston-Werner, Chiris Wanstrath,
Scott Chacon, P.J. Hyett.
xxxxxxxxxx
I love GitHub #Every open source developer's dream is to become github star
xxxxxxxxxx
echo "# github" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/example/test.git
git push -u origin main
#…or push an existing repository from the command line
git remote add origin https://github.com/example/test.git
git branch -M main
git push -u origin main
xxxxxxxxxx
echo "# practice" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/shlee87/practice.git
git push -u origin master