git
git commit , push
정후닝
2020. 5. 7. 19:00
git init

git status -> 상태보기

git add .

git commit -m "first commit" 커밋 메시지

푸쉬하기!
git remote add origin https://github.com/jeonhoonlee/beamin.git
git push -u origin master
깃헙에서 확인해보면 푸쉬가 잘된것을 확인할수있다!
#######
7/10일 추가

깃에 리포짓토리만들고나서 약간 중복?생기면 이러는것같은데
git push -f origin master 이걸로 덮어씌울수있다 강제로 근데 파일 손실의 위험이있다하니 조심하길.