๎ฐ cd desktop
๎ฐ cd dev
๎ฐ cd ORM_CAMP
๎ฐ cd dart-basic
echo "# dart-basic" >> README.md //README.md ์์ฑํ๋ ๋ฆฌ๋
์ค ๋ช
๋ น์ด
git init //๊น ์ด๊ธฐํ, ๊ธฐ๋ณธ์ ์ผ๋ก ํ๋์ ๋ธ๋์น๊ฐ ์์ฑ๋๋ค
git add README.md //์ด ํด๋ ์์ README.md ํ์ผ์ ๊ด๋ฆฌํ๊ฒ ๋ค.(์ธ๋ฑ์ฑํ๋ค. ํธ๋ํ๋ค.)
git commit -m "first commit" //๋ด๊ฐ ์์ ํ๊ฑฐ ์ ์ฅํ๊ฒ ๋ค. ์๋ฒ์ ์ฌ๋ฆฌ๊ธฐ ์ ์ ๋ก์ปฌ์ ์ฅ์์ save
git branch -M main //๋ธ๋์น ์ด๋ฆ์ main์ผ๋ก ๋ณ๊ฒฝ
git remote add origin https://github.com/seeunson/dart-basic.git
// ๋ก์ปฌ ์ ์ฅ์๋ฅผ origin์ด๋ผ๋ ๋ณ์นญ์ผ๋ก ์๊ฒฉ ์ ์ฅ์๋ฅผ์ ์ฐ๊ฒฐ
git push -u origin main
//๋ก์ปฌ ์ ์ฅ์ origin์ ์๊ฒฉ ์ ์ฅ์ main ๋ธ๋์น์ ์
๋ก๋
git remote add origin https://github.com/seeunson/dart-basic.git
git remote add origin https://seeunson.com/seeunson/dart-basic.git
git add .
git commit -m "์์ ์ฌํญ"
git push
Q. ์๋ฒ์ ์ฌ๋ฆฌ๊ธฐ ์ ์ด๋ผ๋ฉด ๋ก์ปฌ ์ ์ฅ์์ ์ ์ฅํ๋ ๊ฑด๊ฐ์?
git config user.name
git config user.email
git remote -v
origin https://github.com/seeunson/dart-basic.git (fetch)
origin https://github.com/seeunson/dart-basic.git (push)
git push -u origin main
remote: Permission to seeunson/dart-basic.git denied to WKDev.
fatal: unable to access 'https://github.com/seeunson/dart-basic.git/': The requested URL returned error: 403
git remote add origin https://seeunson.com/seeunson/dart-basic.git
git push origin main