我有一个Xcode 4项目,当我第一次打开它时,我检查了“为项目创建本地respo ...”。我在GitHub也有一个回购。如何将文件从我的电脑上传到github上的repo? 感谢。
答案 0 :(得分:4)
http://help.github.com/create-a-repo/
将您的本地文件夹初始化为git repo:
git init
在repo中暂存您的本地文件
git add .
将您的代码提交到repo
git commit -m 'comment'
告诉git你的远程回购
git remote add origin //your github conneciton here
将您的本地主分支推送到“origin”远程仓库
git push origin master