The git revert command can be considered an 'undo' type command, however, it is not a traditional undo operation. Instead of removing the commit from [...]
The git add command adds a change in the working directory to the staging area. It tells Git that you want to include updates to a particular file in the next [...]
The git log command displays committed snapshots. It lets you list the project history, filter it, and search for specific changes. While git status lets you [...]
The git status command displays the state of the working directory and the staging area. It lets you see which changes have been staged, which haven’t, [...]
This guide shows you how to create a JS/HTML Cordova application and deploy them to various native mobile platforms using the cordova command-line [...]
The git reset command is a complex and versatile tool for undoing changes. It has three primary forms of invocation. These forms correspond to command line [...]
I used LESS a lot. These days I decided to try SCSS and to be honest it's a better choice for CSS pre-processor. It just gives me more functionalities and [...]
As developers, we have lots of exciting tools at our disposal. For CSS work, we can use preprocessors like Sass and Less to improve our workflow. For [...]
Many powerful open source projects have Node.js as a dependency, so often times you’ll need to set it up on your web server.
But what if you wanted to [...]
If you're building a modern JavaScript application or website, there's a good chance you've seen the JavaScript Build Tool Landscape. The heavyweights of this [...]