Ubuntu & OSX setting
root Fire Fox Update GIT Installation and Setting Git multi user ssh setting Autojump Installation vim Installation and Setting vim scheme vim Plugin Install youcompleteme Airline ctag Mouse setting root $sudo passwd root Fire Fox Update $sudo apt-get firefox $sudo apt-get update GIT Installation and Setting 설치 $sudo apt install git 초기 설정 $git config --global user.name "kimleepark" $git config --global user.email kimleepark@gmail //$git config -l $ssh-keygen //.ssh 폴더안에 id_rsa.pub 의 내용을 Github ssh에 등록해준다. $git init $git log //git 작업 기록 $git status //git 현재 현황(add 되거나, 추적 가능한 파일 현황) $git add //-u 업데이트된 항목을 추적해서 add함, --all,-A 폴더내 모든 항목을 add함 $git commit $git push //local -> remote 저장소로 이동 $git pull //원격 저장소에 있는 변경 사항을 가져와서 merge함 Git 시작하기 를 참고 하시면서 작업 하시면 좋습니다.