Skip to content

Latest commit

ย 

History

History
18 lines (15 loc) ยท 1.23 KB

02_setting.md

File metadata and controls

18 lines (15 loc) ยท 1.23 KB

GIT ์„ค์ •ํ•˜๊ธฐ

  • git config --global user.name "์ด๋ฆ„" && git config --global user.email "์ด๋ฉ”์ผ"์„ ์„ค์ •ํ•ด์ค€๋‹ค. GitHub ์•„์ด๋””๊ฐ€ ์žˆ๋Š” ๊ฒฝ์šฐ ๋™์ผํ•˜๊ฒŒ ๊ธฐ์ž…ํ•˜์ž

  • git config --global core.autocrlf input(Mac), git config --global core.autocrlf true(Window)๋ฅผ ๊ธฐ์ž…ํ•œ๋‹ค
    • ์œ„๋Š” ์šด์˜์ฒด์ œ์— ๋”ฐ๋ฅธ ๊ฐœํ–‰(Mac : LF / Window : CR, LF)์˜ ์ฐจ์ด๋ฅผ ์ฒ˜๋ฆฌํ•˜๊ธฐ ์œ„ํ•จ์ด๋‹ค
  • git config --global --edit๋ฅผ ์ด์šฉํ•ด ํ•ด๋‹น ๋‚ด์šฉ์„ ํ™•์ธํ•˜๊ฑฐ๋‚˜ ์ˆ˜์ •ํ•  ์ˆ˜ ์žˆ๋‹ค

  • ์„ค์ •์„ ๋งˆ์นœ ๊ฒฝ์šฐ ์ƒํ™ฉ์— ๋”ฐ๋ผ :q(๋ณ€๊ฒฝ ์—†์ด ๋‚˜๊ฐ€๊ธฐ) :q!(๋ณ€๊ฒฝ์„ ์ €์žฅํ•˜์ง€ ์•Š๊ณ  ๋‚˜๊ฐ€๊ธฐ) :wq(๋ณ€๊ฒฝ์„ ์ €์žฅํ•˜๊ณ  ๋‚˜๊ฐ€๊ธฐ)๋ฅผ ํ•ด์ค€๋‹ค

Editor์—์„œ GIT ์„ค์ •ํ•˜๊ธฐ

Terminal์—์„œ ์ˆ˜์ •ํ•˜๋Š” ๊ฒƒ์ด ๋ถˆํŽธํ•˜๋‹ค๋ฉด ๋‹ค๋ฅธ Editor๋ฅผ ์‚ฌ์šฉํ•˜๋„๋ก ์ˆ˜์ •ํ•  ์ˆ˜ ์žˆ๋‹ค.

  • Visual Studio Code๋ฅผ ์‚ฌ์šฉํ•˜๋Š” ๊ฒฝ์šฐ
    • git config --global core.editor "code --wait"
  • Xcode๋ฅผ ์‚ฌ์šฉํ•˜๋Š” ๊ฒฝ์šฐ
    • git config --global core.editor "xed --wait"