gitgui를 실행해서 작업 폴더로 이동한다.
-저장소생성
$ git init
-저장소 내용 스태이징
$git add .
-commit
$git commit
이후 해당 폴더 상위로 이동한다.
--bare 생성
git clone --bare tsecond_com tseocnd_com.git
--원격지로 복사
scp -r tseocnd_com.git git@tsecond.com:/git/tsecond_com.git
ssh://git@tsecond.com/git/~
--원격지에서 소스 받아 오기
git clone 사용자명@호스트:/원격/저장소/경로
--참고 링크
https://rogerdudler.github.io/git-guide/index.ko.html