How to Upload Project on GitHub from Android Studio?

Suraj Shende
Road to Code
Published in
1 min readDec 22, 2020

--

Step1: Sign up and create a GitHub account in www.github.com

Step2: Download git from https://git-scm.com/downloads and install it in your system.

Step3: Open the project in android studio and go to File -> Settings -> Version Control -> Git.

Step4: Click on the test button to test the “path to Git executables”. If a successful message is shown everything is ok, else navigate to git.exe from where you installed git and test again.

Step5: Go to File -> Settings -> Version Control -> GitHub. Enter your email and password used to create a GitHub account and click on the OK button.

Step6: Then go to VCS -> Import into Version Control -> Share Project on GitHub.

Step7: After Step6 a pop-up will arise where a user has to enter its GitHub login id and password. After successfully logged in to its account one more pop-up will come where the user has to give its Repository name and the Description of their repository. Then click on the share button and done.

Note: Don’t put blank spaces or special characters while giving the Repository name.

--

--