Skip to content

Git으로 프로젝트 공유하기

nephilim edited this page Feb 11, 2011 · 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 
  cd my_dir
  git clone https://[email protected]/codeport/ios.git laodan-study
  cd laodan-study
  mkdir {my_id}
  cd {my_id}
  
  # Commit and push your job
  git add .
  git commit -m "Finally, I did it! 해냈어요 여러분."
  git push origin