Hello World!!
LeeMir, 25 September 2018
Git Bash를 이용하여 Commit하기
cd Username.github.io
// 폴더 접근
git status
// 파일의 상태(업로드) 확인
git add *
// 새로 만들어진 파일을 commit할 수 있게 바꿈
git commit -m "Message"
// commit 후 Message 출력(Message는 꼭 입력해야함)
git remote -v
//현재 리모트 저장소 확인
git push
// github 저장소에 commit된 파일을 밀어넣음