Interactive comprehensive cheatsheet for the popular version control system Git.
Note. Work on this project is currently in progress, and not all planned Git commands are added to the cheatsheet. Star the repo and stay tuned for the updates!
Make sure you have node installed. Then clone the repo and install all dependencies:
git clone https://github.com/kmingulov/git-cheatsheet.git
cd git-cheatsheet
npm installTo run the cheatsheet in production mode, install serve (npm install serve -g) and run:
npm run build
serve -s buildThe cheatsheet will be accessible under http://localhost:5000.
To run the cheatsheet in development mode, simply execute:
npm startThe cheatsheet will be available under http://localhost:3000. If you make any changes to the code, it will be recompiled and the server will be restarted.
If you think Git Cheatsheet could be improved, fork the repo and submit a pull-request!
Please note that we use Travis and Codecov to track build health.
That said, please run npm lint and npm test to make sure that your changes follow our code style and don't break any tests.