슬기로운 연구생활

[Git] Linux git 설치 본문

슬기로운 세팅 생활

[Git] Linux git 설치

vhrehfdl 2019. 9. 10. 14:18

1. Git 설치하기

apt-get install git-core

2. Git 환경설정하기

git config --global user.name "UserName" 
git config --global user.email UserEmail

3. Git 추가하기

git add .

4. Git commit 하기

git commit -m "upload server"

5. 기존에 git에 있는 코드를 가져온다.

#git에 있는 코드를 땡겨온다. 자동으로 merge가 된다. 
git pull origin master

6. Git 서버에 올린다.

#현재 server 코드를 upload 해준다. 
git push origin master

Comments