우도비
gitignore
$ vi ~/.gitignore 이렇게 추가해 줍니다. .svn.DS_Storebuildxcuserdata 그리고, $ git config --global core.excludesfile ~/.gitignore 이렇게 실행해 줍니다.확인해 보시면, $ cat .gitconfig [core] quotepath = false excludesfile = /Users/userid/.gitignore[user] name = Gyuha Shin email = userid@mail.com
카테고리 없음
2017. 12. 26. 16:56
git 설정
git config --global user.name "이름"git config --global user.email "깃허브 메일주소" // 매번 물어보는 귀찮음을 피하기 위해 설정. mkdir ~/MyProject // 로컬 디렉토리 만들고cd ~/myproject // 디렉토리로 들어가서git init // 깃 명령어를 사용할 수 있는 디렉토리로 만든다.git status // 현재 상태를 훑어보고git add 화일명.확장자 // 깃 주목 리스트에 화일을 추가하고 orgit add . // 이 명령은 현재 디렉토리의 모든 화일을 추가할 수 있다.git commit -m “현재형으로 설명” // 커밋해서 스냅샷을 찍는다. git remote add origin https://github.com/user..
카테고리 없음
2017. 12. 26. 15:48