Artyom Okon
Artyom Okon

Reputation: 93

Committing all files from Android Studio to GitHub

I'm new to the GitHub, and trying to push my project to the GitHub from VCS of Android Studio. When I do this it commits and pushes only .java files and no other files like resources etc.

How can I push the rest of the files? Thanks.

Upvotes: 9

Views: 12463

Answers (1)

John Smith
John Smith

Reputation: 605

  1. Check .gitignore file. http://git-scm.com/docs/gitignore

  2. Right-click on directory of your project (in Android Studio) -> Git -> Add enter image description here

Upvotes: 9

Related Questions