Git Reset to Previous Version
Revert back to any previous version from Git Bash 1.Get the log history or commit details from git bash using “git log” 2.From this example , last commit is changes 3 and the hash is […]
Learning Never Ends …
Revert back to any previous version from Git Bash 1.Get the log history or commit details from git bash using “git log” 2.From this example , last commit is changes 3 and the hash is […]
Create Branches and Merge it with Master 1. Create Branch in Git “git branch branch1” 2. Checkout from Master using “git checkout branch1” 3. Now we are in “branch1” 4. Modify “index.php” Previous After Modify […]
1. Install Git from Git Website 2. Goto your project directory (in my case it is : C:\wamp\www\web) 3. Now Right click on the directory and select “Git Bash Here” 4. Now provide the command […]
Objective c in Windows 1. Download all the required installer from http://www.gnustep.org/windows/installer.html (GNUstep MSYS System, GNUstep Core, GNUstep Devel, GNUstep Cairo) 2. Create Folder in D: drive like “D:\objective” 3. Install all the installer on […]
Create Gradle-Java project with Intellij. 1. Open Intellij and navigate to File > New > Project 2. Seelct “Gradle” and also select “Java” as additional Libraries 3. If SDK is not set selected then Click […]