In this case using NodeJS and ReactJS at the same project. The React has server example for NodeJS, Ruby, Python, PHP. We can clone de repository and after install all dependencies. For that first : git clone https://github.com/reactjs/react–tutorial.git comments npm install Run the App : npm start The file server.js is used express module in order to […]
git
GIT STATEMENTS
Undo changes to a single file Both reset and checkout can undo changes to individual files. To unstage a specific file, leaving local changes alone: $ git reset <filename> To revert a specific file, losing any local changes to the file: $ get reset –hard HEAD <filename> To revert to an older version of a […]