Posts

Showing posts from September, 2017

What is Travis CI

Image
Travis CI is one of the continuous integration services available in the market. It is used to build and test public and private software projects hosted on Github. Public repositories can be tested through  travis-ci.org  for free and Travis CI providing premium support for private repositories hosted on Github through  travis-ci.com .

What is ESLint

Image
It is just like any other utility in javascript, helps us to format our code. As javascript is loosely typed language which is more likely to be error-prone. Eslint helps developers to discover problems[syntax errors, indentation, formatting etc.] with javascript code even before executing it. A developer can construct his own rules with this Eslint utility. It can be included into our project via npm.

GIT Commands

Image
How to push local branch to Remote Github  : $ git push origin [branch_name] How do I make Git ignore file mode (chmod) changes: git config --global core.fileMode false How to check status of the current working branch: git status How to copy repository in to our local machine: git clone <repository_url> How to create new branch in our local: git checkout -b <nameOfNewBranch> How to check various branches on our local machine: git branch How to add fiule to git commit: git add <filesName1> <filesName2> How to add all modified files to git commit: git add . How to commit git commit -m <message related to commit> How to pull latest updates from teh branch git pull origin <branch_name> How to push local changes to github: git push origin <branchName> How to remove a local branch from our machine: git branch -d {the_local_branch_name} (use -D ...