http://www.vogella.com/tutorials/EclipseGradle/article.html
Tuesday, 21 June 2016
Geocoding JSon Parse
Some good point in parsing
http://stackoverflow.com/questions/9058300/how-to-parse-json-reponse-received-from-geocoding-api-v3-in-android-applicatio
http://stackoverflow.com/questions/9058300/how-to-parse-json-reponse-received-from-geocoding-api-v3-in-android-applicatio
Thursday, 9 June 2016
Bitbucket or Git Commands Sequence
HOW TO REBASE USING COMMAND LINE
In this example you want to copy all the changes from branch release/v1.0.0 into your branch.
go to your branch then type this commands
git pull
git pull --rebase origin release/v1.0.0
HOW TO COMMIT SOME CODE
git pull
git add -A
git commit -m "your remarks"
git push
Removing a file
git rm "Filename.txt"
Conflicts tools
git mergetool
In this example you want to copy all the changes from branch release/v1.0.0 into your branch.
go to your branch then type this commands
git pull
git pull --rebase origin release/v1.0.0
HOW TO COMMIT SOME CODE
git pull
git add -A
git commit -m "your remarks"
git push
Removing a file
git rm "Filename.txt"
Conflicts tools
git mergetool