我正在尝试在Linux机器上为我们通过CD继承的应用程序设置远程存储库。但是当我试图将源推送到新的存储库时,存储库行显示“No Remotes”。我确实看到了MailCore的东西,我没有设置。
Source Control-> Push
Push local changes:
MOPASource No remotes
MailCore origin/master
IOSPorts origin/(detached from 2b..)
Libetpan origin/(detached from 6c..)
这就是我所做的: 在linux框中,SA安装了git然后我创建了git存储库。 cd~count / archives mkdir -p 775 MOPA git init
Xcode->Preferences Accounts tab I added the repository information successfully to Xocde:
Address: ssh://acount@X.X.X.X/home/archives/MOPA/.git
User Name: account
Password: account password
Description: .git
确保所有本地文件都已提交后,我尝试推送到遥控器并获得No remotes问题。
然后我尝试推动命令行思考可行,但我git说linux盒子上没有任何内容。
git remote add origin account@x.x.x.x/home/account/archives/MOPA/.git
在遥控器上我看到了这个: lasarus3:/ home / account / archives / MOPA> git status #On分支主人 # #初始提交 # 没有提交(创建/复制文件并使用" git add"跟踪)
Should I just ssh the local .git directory to the remote site? What am I missing?