git 설치 [root@master ~]# yum install git readme 파일 생성하기 [root@master ~]# echo "#test" >> README.md 깃 초기화 하면 파일생성 [root@master ~]# git init Initialized empty Git repository in /root/.git/ github.com에서 repository 만들기(아래 사진 참조) [root@master ~]# git add README.md [root@master ~]# git commit -m "Test GitHub" *** Please tell me who you are. Run git config --global user.email "you@example.com" git confi..