兩種方法,一種是在xcode里面選擇git,填上git地址,進(jìn)行commit & push
還有一種是通過命令行打開你的ios項(xiàng)目文件夾,然后執(zhí)行
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地址,進(jìn)行commit & push
還有一種是通過命令行打開你的ios項(xiàng)目文件夾,然后執(zhí)行
git init
git remote add origin you_project_url_on_git
git add .
git commit -m "first commit"
git push origin master