一、先在遠程倉庫(如github)建立項目,爲了不錯誤,不要初始化 README, license, 或者gitignore文件 .git
二、打開Terminal終端github
三、切換到你的本地項目目錄ssh
四、初始化本地倉庫blog
git init
五、添加文件到本地倉庫rem
git add .
六、提交文件 it
git commit -m "First commit"
七、到遠程倉庫的頁面上,複製倉庫地址 (筆者以配置好ssh,故複製ssh形式的倉庫地址)ast
八、添加遠程倉庫地址到本地倉庫class
git remote add origin {遠程倉庫地址} # Sets the new remote git remote -v # Verifies the new remote URL
九、push到遠程倉庫配置
git push -u origin master