Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info

The content of this page is written in Korean because all mentees of this program are Korean so it would reduce communication costs.

자기소개

TBD

기여하기

개발환경 준비 및 설정

Code Block
languagebash
titleGit 설정
$git$ # Git 환경 설정
$ git config --global user.name "Your Name"
$git$ git config --global user.email "your_email@email.com"
$git
$ # Git clone 리모트 설정
$ git clone https://github.com/{your_github_id}/zeppelin
$git$ git remote add apache https://github.com/{your_id}/zeppelinapache/zeppelin

$ # Git pull from apache and push to my repo
$ git checkout master
$ git pull --rebase apache master
$ git push origin master