Ubuntu git 설치

Ubuntu git 설치

  • Git Install

설치


  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 .
  1. Git commit 하기

            git commit -m "upload server"
        ```​​
    5. 기존에 git에 있는 코드를 가져온다.
        ``` bash
            #git에 있는 코드를 땡겨온다. 자동으로 merge가 된다.
            git pull origin master
  2. Git 서버에 올린다.

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

# ,

Comments

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×