I know this is a much-discussed topic on stackoverflow, but I just can't figure out how to make this work. I would like to:
This is the .gitignore I'm using (basically the Android Studio created one, where I removed the *.iml files - cause that didn't work)
.gradle /local.properties /.idea/workspace.xml /.idea/libraries .DS_Store /build /captures
But somehow, it just won't work. Android Studio won't recognise the Project, no matter what my gitignore file looks like.
So actual question: how do I push an Android Studio project to git so I can simply pull it into another client to continue working?
EDIT:
So here’s how I do things, step-by-step:
under “project on the left” select “Project” then under Git “Add”
commit/push the changes (define the remote repo in the process)
at this point, the project is on bitbucket. Next comes the "import project" part:
The project loads, I get some sort of NullPointerException
In Android Studio, go to VCS > Enable Version Control Integration. This option won't be visible if it's integrated with any version control before. Then choose Git as the version control system.
Android Studio Instructions: if you want to do this in Android Studio, press alt + 9 (or Command + 9 on Mac) to open the Version Control panel. Switch to the Log tab and right click on a previous commit. Select Checkout Revision . Command line instructions: Open the command line tool you are using.
On the other computer you could try to import the project, instead of opening it.
Actually, you don't have to commit project specific files to your git repo. Android Studio is smart enough to import a project from many different sources.
With IntelliJ IDEA you can not only create an Android project from scratch, but also import an existing project developed using other tools. One of the most common scenarios is importing an existing Android-Gradle project. However, you can also import a Maven, Eclipse or Flash Builder project, or even build a new project from a bunch of source files.
Just like this:
And here's a nice and more detailed tutorial on how to import a project on Android Studio from source and other places.
For your .gitignore
file I strongly recommend you to get one using gitignore.io
website.
Also, if you already commited files that are not supposed to be there, check this question and see how you can remove them.
Here's an example of a .gitignore
file that I use on one of my projects.
# Created by https://www.gitignore.io/api/android,osx,windows,linux,intellij,java ### Android ### # Built application files *.apk *.ap_ # Files for the Dalvik VM *.dex # Java class files *.class # Generated files bin/ gen/ # Gradle files .gradle/ build/ # Local configuration file (sdk path, etc) local.properties # Proguard folder generated by Eclipse proguard/ # Log Files *.log # Android Studio Navigation editor temp files .navigation/ ### Android Patch ### gen-external-apklibs ### OSX ### .DS_Store .AppleDouble .LSOverride # Icon must end with two \r Icon # Thumbnails ._* # Files that might appear in the root of a volume .DocumentRevisions-V100 .fseventsd .Spotlight-V100 .TemporaryItems .Trashes .VolumeIcon.icns # Directories potentially created on remote AFP share .AppleDB .AppleDesktop Network Trash Folder Temporary Items .apdisk ### Windows ### # Windows image file caches Thumbs.db ehthumbs.db # Folder config file Desktop.ini # Recycle Bin used on file shares $RECYCLE.BIN/ # Windows Installer files *.cab *.msi *.msm *.msp # Windows shortcuts *.lnk ### Linux ### *~ # KDE directory preferences .directory # Linux trash folder which might appear on any partition or disk .Trash-* ### Intellij ### # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio *.iml ## Directory-based project format: .idea/ # if you remove the above rule, at least ignore the following: # User-specific stuff: # .idea/workspace.xml # .idea/tasks.xml # .idea/dictionaries # Sensitive or high-churn files: # .idea/dataSources.ids # .idea/dataSources.xml # .idea/sqlDataSources.xml # .idea/dynamic.xml # .idea/uiDesigner.xml # Gradle: # .idea/gradle.xml # .idea/libraries # Mongo Explorer plugin: # .idea/mongoSettings.xml ## File-based project format: *.ipr *.iws ## Plugin-specific files: # IntelliJ /out/ # mpeltonen/sbt-idea plugin .idea_modules/ # JIRA plugin atlassian-ide-plugin.xml # Crashlytics plugin (for Android Studio and IntelliJ) com_crashlytics_export_strings.xml crashlytics.properties crashlytics-build.properties # Mobile Tools for Java (J2ME) .mtj.tmp/ # Package Files # *.jar *.war *.ear
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With