Posts

Showing posts from September, 2016

Git Solutions

Git - It's a source code management system, it having lot more advantages. With this system we can manage the source code like a tree(Source code can be managed with the version releases). If you are very new to Git: 1. Create a folder to hold your repository code and make sure the folder name should not contain empty spaces. 2. Open the folder and open the git bash with right click->select git bash 3. Give the command - git init (This will create your local git reference and the .git folder will be created, it will be in hidden mode) To Create new branch and push that branch to remote git: 1. Open your root folder and open git bash 2. give the command -  git checkout -b <branch-name> Ex: git checkout -b develop 3. put your initial code into the root folder and use the command git push -u <remote-name> <branch-name> Ex: 'git push origin develop <remote-name>' is typically origin, the name which git gives to the remote you cloned f