ubuntu에서 작업하던 프로젝트를 github에 업로드하려고 한다.
sudo apt-get install git-core
sudo apt-get install update
git에서관리하고자 하는 folder로 이동
git init
git config user.name ""
git config user.email ""
git remote add origin https://github.com/..
git fetch origin
echo node_modules/ > .gitignore
cat .gitignore
.node_modules/
node_modules은 git에 올리는 걸 무시한다.
git add . //모든 파일 add
git commit -m "init"
git push origin master
git --version
git config --list // check list
git config --unset --global user.name // remove config
git config --unset --global user.email
git status
git remote rm origin