Github ๋ฐฉ๋ฒ
Git Workflow
๐ก ๋๋ฃจ๋ญ์คํ๋ ํ๋ฆ์ ๋์์ด ๋ ์ฌ์ง
Github ๋ช ๋ น์ด
-
git init : ๋ก์ปฌ ํด๋์ git ํ์ผ ์์ฑ
-
git remote add origin https://github.com/(repository ์ฃผ์)
: ๋ก์ปฌ ์ ์ฅ์์ ๊นํ๋ธ ์ ์ฅ์ ์ฐ๋ -
git status : ํ์ฌ ๋ก์ปฌ ์ ์ฅ์ ์ํ ํ์ธ
-
git add . : ๋ณ๊ฒฝ๋ ํ์ผ ์คํ ์ด์ง
-
git commit -m โ์ปค๋ฐ ๋ฉ์์งโ : ๋ณ๊ฒฝ๋ ๋ด์ฉ ๋ฑ๋ก (์์ง ์ ์ฅ์์ ๋ฐ์โ๏ธ)
-
git log : ์ปค๋ฐ ๋ ๋ด์ฉ ํ์ธ
-
gitk - - all : GUI๋ก ๋ก๊ทธ ํ์ธ ๊ฐ๋ฅ
-
git push origin main : ๋ก์ปฌ ํ์ผ ์ ์ฅ์์ ๋ฐ์
-
git pull origin main : ์ ์ฅ์ ํ์ผ ๋ก์ปฌ์ ๋ฐ์
-
git clone https://github.com/(repository ์ฃผ์) :
Leave a comment