Developer Keyboard Shortcut Cheatsheet
Developer Cheatsheet
Common keyboard shortcuts and commands for developers.
Command / Shortcut | Description |
---|---|
git init | Initializes a new Git repository. |
git clone [url] | Clones a repository into a new directory. |
git status | Shows the working tree status. |
git add [file] | Adds file contents to the index. |
git commit -m "[message]" | Records changes to the repository. |
git push | Updates remote refs along with associated objects. |
git pull | Fetches from and integrates with another repository. |
git branch | Lists, creates, or deletes branches. |
git checkout [branch] | Switches branches or restores working tree files. |
git merge [branch] | Joins two or more development histories together. |