Git 기초를 배웁니다
- shell
git config --global user.name "myname"
git config --global user.email "[email protected]"
git init
git status
touch index.html
git add index.html
git commit -m "message"
git log
git remote add origin github_repo_url
git push -u origin master- markdown 문서 편집기 - typora