兩種方法,一種是在xcode里面選擇git,填上git地址,進行commit & push
還有一種是通過命令行打開你的ios項目文件夾,然后執行
git init
git remote add origin you_project_url_on_git
git add .
git commit -m "first commit"
git push origin master
兩種方法,一種是在xcode里面選擇git,填上git地址,進行commit & push
還有一種是通過命令行打開你的ios項目文件夾,然后執行
git init
git remote add origin you_project_url_on_git
git add .
git commit -m "first commit"
git push origin master