Developer Keyboard Shortcut Cheatsheet

Developer Cheatsheet
Common keyboard shortcuts and commands for developers.
Command / ShortcutDescription
git initInitializes a new Git repository.
git clone [url]Clones a repository into a new directory.
git statusShows the working tree status.
git add [file]Adds file contents to the index.
git commit -m "[message]"Records changes to the repository.
git pushUpdates remote refs along with associated objects.
git pullFetches from and integrates with another repository.
git branchLists, creates, or deletes branches.
git checkout [branch]Switches branches or restores working tree files.
git merge [branch]Joins two or more development histories together.