Home > Net >  How do I upload my android studio project to github
How do I upload my android studio project to github

Time:02-01

I am a newbie on github and am not familiar with it's ins and outs

I know how to locally create a repository on github,but I have no idea about converting my android studio project to a github repository

Screenshot of my project:-Image1

CodePudding user response:

Follow these steps:

1- create a Github repository

2- open terminal in the project location

3- git init

4- git remote add origin <url of created repository>

5- dit add .

6- git commit -m 'initial commit'

7- git push origin master

you will see your project in the Github repo you just created.

Note You may need to set your credentials for the Github on your local git and create .gitignore file.

  • Related