๐ETC./โ๏ธ Tool
[GitHub] ๊นํ๋ธ์ ํ๋ก์ ํธ ์ฌ๋ฆฌ๊ธฐ
yujch
2021. 8. 24. 20:54
๋ฐ์ํ
๋ณดํต์ ์ ์ฅ์๋ฅผ ์์ฑํ๋ค 'Upload files'๋ฅผ ํ๋ฉด ์ ๋ก๋๋์ง๋ง

ํ์ผ ๊ฐฏ์๊ฐ ๋๋ฌด ๋ง์ ๊ฒฝ์ฐ ์๋๋ฏ๋ก

ํฐ ํ๋ก์ ํธ๋ฅผ ์ ๋ก๋ํ ๋๋ ์ด ๋ฐฉ๋ฒ์ผ๋ก ํ์
1. Git์ ์ค์นํ๋ค.
Git - Downloads
Downloads macOS Windows Linux/Unix Older releases are available and the Git source repository is on GitHub. GUI Clients Git comes with built-in GUI tools (git-gui, gitk), but there are several third-party tools for users looking for a platform-specific exp
git-scm.com
2. GitHub์ ์ ์ ์ฅ์๋ฅผ ์์ฑํ๋ค.


3. ์์ฑ๋ ์ ์ฅ์์ ์ฃผ์๋ฅผ ๊ธฐ์ตํด๋์.

4. ์ ๋ก๋ํ๊ณ ์ถ์ ํ๋ก์ ํธ์ ํด๋๋ฅผ ๋ง์ฐ์ค ์ฐํด๋ฆญ > Git Bash Here

5. ์ด๊ธฐ ์ค์ ์ ํด์ค๋ค.
git config --global user.name "์ ์ ์ด๋ฆ"
git config --global user.email "์ ์ ์ด๋ฉ์ผ"
- ์ด ์ฐฝ์์๋ Ctrl+v๋ก ๋ถ์ฌ๋ฃ๊ธฐ ์๋จ => Shift + Ins ์ฌ์ฉํ์

6. ํ์ผ ์ค๋น
git init #.git ํ์ผ ์์ฑ
git add . #์ ํํ ํ๋ก์ ํธ ํด๋ ๋ด์ ๋ชจ๋ ํ์ผ ๊ด๋ฆฌ
-> ํน์ ํ์ผ๋ง ํ๊ณ ์ถ๋ค๋ฉด git add ํ์ผ์ด๋ฆ.ํ์ผํ์ ex) git add a.txt
git status #์ํํ์ธ
git commit -m "์ฃผ์" #์ปค๋ฐ

7. ์ ๋ก๋ํ๊ธฐ
git remote add origin {์ 3๋ฒ์์ ์ ์ฅํ ๊นํ๋ธ ์ ์ฅ์ ์ฃผ์}
git push -u origin master

8. ํ๋ก์ ํธ ์ ๋ก๋ ์๋ฃ

9. ํ๋ก์ ํธ ์ค๋ช ์ ๊ธฐ


๋ฐ์ํ