在GitHub上作为协作者上传AndroidStudio项目

时间:2017-10-12 17:15:23

标签: android-studio github repository

我在使用AndroidStudio和GitHub时遇到了麻烦:我需要在GitHub存储库中上传一个项目,我和他的合作伙伴。我该怎么做?我知道如何在新的存储库中上传项目,但我不知道如何在不属于我的存储库中执行此操作。 (我有权利)。谢谢大家

1 个答案:

答案 0 :(得分:0)

git init
git remote add origin https://github.com/username/repository.git
git add .
git commit -m "first - commit"
git push -u origin master