Skip to content
김희준 edited this page Oct 25, 2016 · 6 revisions
git clone 경로
git commit -m "커밋내용"

pussh 할때 u옵션 주면 웹에서 로그인창이 나온다.

git push origin master
git push u origin master

commitgit please tell me who you are 나오면

git config user.name "slahsk"
git config user.email "slahsk12@gmail.com"

commitfilename too long 나오면

git config --system core.longpaths true

push 시 주소가 다르다고 remoete error 발생시 정상적인 url 주소로 변경해줘야한다.

git remote set-url origin 주소

local 브런치 삭제

git branch -d 브런치이름

remote 브런치 삭제 하기

git push origin --delete 브런치이름

Clone this wiki locally