git關聯本地文件和遠程倉庫

平時本身有一些本地的項目想把它們放到github上去,就須要關聯一下。git

步驟一:

在本地想放到github上的項目的根文件夾執行git init。github

步驟二:

在github上新建一個倉庫Repository,獲得倉庫地址。好比https://github.com/MR-yuhuash...spa

clipboard.png

clipboard.png

步驟三:

本地項目根文件夾執行:code

git remote add origin https://github.com/MR-yuhuashi/jest-nuts.git

步驟四:

關聯以後,就能夠進行拉取遠程代碼和提交本地代碼到遠程等等操做啦
好比ip

git pull origin master
git add .
git commit -m 'first commit'
git push
相關文章
相關標籤/搜索