<MAC 기준>
출처 : https://youtu.be/0Icla6TVNNo
이 영상을 참고했습니다.
Check if git is already installed.
terminal로 가서
git --version
Download and install git
https://git-scm.com/ 가서 버전 확인 후 다운로드
Signup and create a account on Github
Add your github email and username to git
터미널에 작성
git config --global user.email "yourGithub@email.com"
git config --global user.name "yourGithubusername"
Add file/folders to git - tracking
cd /USERS/minjae/Desktop/JAYFOLDER/hex
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