Created
August 20, 2012 21:47
-
-
Save buzeeg/3408192 to your computer and use it in GitHub Desktop.
GIT-Android-Eclipse running together
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### GIT + Eclipse + Android ### | |
- Create the git repo (github or other) | |
- Launch Eclipse in wanted WS | |
- Import GIT project from distant repo | |
- Use New project wizard or Import existing project (create it anywhere, it will be moved in the next step) | |
- Finally move project into git local dir using : Team > Share Project | |
To commit in Eclipse : Team > Commit | |
To pull to origin repo in Eclipse : Team > Push to upstream | |
To pull to origin repo using git cmd line : git push -u origin master | |
Pull new code from distant repo to local dir : | |
git pull origin master | |
Push new code to distant repo : | |
git push -u origin master | |
source : http://www.throrinstudio.com/dev/creer-un-nouveau-projet-github-sous-eclipse/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment