Versions Compared

Key

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

...

개발환경 준비 및 설정

Code Block
languagebashtitleGit 설정
$ # Git 환경 설정
$ git config --global user.name "Your Name"
$ git config --global user.email "your_email@email.com"

$ # Git clone 리모트 설정
$ git clone https://github.com/{your_github_id}/zeppelin
$ git remote add apache https://github.com/apache/zeppelin

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

...