[GitHub] github 연동하기

깨미·2022년 1월 24일
0

💻 배워가기 💻

목록 보기
23/30

목표

ubuntu에서 작업하던 프로젝트를 github에 업로드하려고 한다.

Install Git

sudo apt-get install git-core
sudo apt-get install update

Setting Account

git에서관리하고자 하는 folder로 이동

git init
git config user.name ""
git config user.email ""

Remote Add

git remote add origin https://github.com/..
git fetch origin

Add gitignore

echo node_modules/ > .gitignore
cat .gitignore
.node_modules/

node_modules은 git에 올리는 걸 무시한다.

Push

git add . //모든 파일 add
git commit -m "init"
git push origin master

추가

Git Version

git --version

Config

git config --list // check list
git config --unset --global user.name // remove config
git config --unset --global user.email

Check Status

git status

Remove Remote

git remote rm origin
profile
vis ta vie

0개의 댓글