Git Basics
January 4, 2013Kunal KambleBlogComments (0)
1. How to initialise Git –
git init
2. Clone your project –
git clone git@github.com:APP_FOLDER/APP.git
3. Push to new branch
git push --set-upstream origin brach_name
4. Change local git branch name
git branch -m <oldname> <newname>
SQLite database connection in Xcode tutorial
December 5, 2012Kunal KambleiOS TutorialsComments (0)
Part 1
Part 2
Creating SQLite Database
December 4, 2012Kunal KambleiOS TutorialsComments (0)
Creating SQLite Database
Hello World!
January 4, 2012Kunal KamblePHP TutorialsComments (0)
Below is an example of one of the easiest PHP and HTML page that you can create and still follow web standards.
My First PHP Code
<?php echo "Hello World"; ?>
Recent Comments