首先,遠程建立好空倉庫 repository,會獲得以下圖所示引導,咱們按照 push an existing repository from the command line 指示, 咱們補充完整步驟便可。
git
Terminal 中 cd 到相應的項目目錄 cd /Users/yuanjilee/Desktop/DEMO/ErrorTracking
github
初始化 .git 文件 git init // 目錄下建立好後 cmd + Shift + . 就能夠看到已經生成了隱藏的 .git 文件夾,config 是其配置文件
ssh
關聯遠程,複製 github 提供的ssh路徑,前提設置了ssh登陸
git remote add origin git@github.com:yuanjilee/ErrorTracking.git
code
提交代碼到暫存區
git add .
cdn
commit 代碼
git commit -m "init"
blog
推送到遠程倉庫
git push -u origin master
rem
相應參數你們能夠自行修改配置。cmd