在过去,我没有使用git下载电报源,但现在我需要更新我的源代码,我需要将myProject(我的非官方电报)连接到github上的mainProject(Telegram)。我的IDE是Android Studio。 Android Studio中的git位于VCS菜单中。但我不知道该怎么做,将我的项目与github项目联系起来。
git clone https://github.com/DrKLO/Telegram.git
如果您已经拥有这些文件并且只想更新它,请跳过此克隆步骤)git init
git remote add origin https://github.com/DrKLO/Telegram.git
git pull origin master
如果您只想知道如何将Android Studio中的项目连接到GitHub,这里有一个简单的教程:https://www.londonappdeveloper.com/how-to-use-git-hub-with-android-studio/(跳过他创建新GitHub存储库和Android Studio项目的步骤,因为您已经拥有了这两个)
有关使用git和github的详细了解,我建议你学习这门课程:https://in.udacity.com/course/how-to-use-git-and-github--ud775