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>
Recent Comments