Skip to content

Git으로 프로젝트 공유하기

MikaelKang edited this page Jan 26, 2015 · 5 revisions
  • github 공유방법 요약
# Download and install Git
git config --global user.name "dongwook lee"
git config --global user.email [email protected]  

# Clone codeport/ios repository 
# nephilim은 특정 사용자 id
cd my_dir
git clone https://[email protected]/codeport/ios.git laodan-study
cd laodan-study
mkdir nephilim
cd nephilim
 
# Commit and push your job
git add .
git commit -m "Finally, I did it! 해냈어요 여러분."
git push origin