Github에 업로드하기

epod·2020년 11월 19일
0
post-custom-banner

<MAC 기준>

출처 : https://youtu.be/0Icla6TVNNo
이 영상을 참고했습니다.

  1. Check if git is already installed.

    terminal로 가서
    git --version

  2. Download and install git

    https://git-scm.com/ 가서 버전 확인 후 다운로드

  3. Signup and create a account on Github

  4. Add your github email and username to git

    터미널에 작성

    git config --global user.email "yourGithub@email.com"
    git config --global user.name "yourGithubusername"

  5. Add file/folders to git - tracking
    cd /USERS/minjae/Desktop/JAYFOLDER/hex

  6. Commands
    터미널 > go to the location of the folder/project
    git init
    defaults write com.apple.finder AppleShowAllFile YES (안보이는 폴더 보이게)
    git status (상태나오게하는거)
    git add filename.file
    git status 로 체크
    git commit -m "added index.html"

    git add . (전체파일 다올리기)
    git remote add origin https://github.com/JAYXJAYXJAY/background-changer.git(주소)
    git push -u origin master

profile
dope
post-custom-banner

0개의 댓글