Remote Repository
ํ์ฌ ํ๋ก์ ํธ์ ๋ฑ๋ก๋ Remote Repository ํ์ธํ๊ธฐ
$ git remote
origin$ git remote -v
origin https://github.com/dh00023/gitpractice.git (fetch)
origin https://github.com/dh00023/gitpractice.git (push)Remote Repository ์ถ๊ฐํ๊ธฐ
$ git remote add [๋จ์ถ์ด๋ฆ] [url]$ git remote add origin https://github.com/dh00023/gitpractice.gitRemote Repository ์ดํด๋ณด๊ธฐ
$ git remote show [๋จ์ถ์ด๋ฆ]$ git remote show origin
* remote origin
Fetch URL: https://github.com/dh00023/gitpractice.git
Push URL: https://github.com/dh00023/gitpractice.git
HEAD branch: master
Remote branches:
master tracked
practice tracked
Local branch configured for 'git pull':
master merges with remote master
Local refs configured for 'git push':
master pushes to master (up to date)
practice pushes to practice (up to date)Remote Repository ์ด๋ฆ ๋ณ๊ฒฝ
Remote Repository ์ ๊ฑฐ
Last updated