Get to Know Git. Handy Git Commands to Keep You on Track.
Git is an open source freely distributed version control system specifically designed to efficiently handle all aspects of your project. It’s relatively small learning curve combined with its tiny footprint and outstanding performance have made it a favorite among programmers for collaboratively developing source code during application development. Unlike most client-server systems, Git directories are full-fledged repositories with complete history and full version-tracking abilities, independent of network access or a central server.
Below are some handy git commands to help you stay on task when developing amazing applications!
Git Cheatsheet
Stash
Stash is place to hide modifications while you work on something else.
git stash - when you want to record the current state of a working directory and the index, but want to go back to a clean working directory. This command saves your modifications away and revers the working directory to match the HEAD commit.git stash save [<msg>] - save your local modifications to a new stash, and run…