add webi dat dat dat
[webi-installers/.git] / git / README.md
index 161c779e17f990c4ff6fb20b580569f42cd9caf2..443a220136c4f5cfda891b210643e8ff4e1bd2e7 100644 (file)
@@ -3,12 +3,20 @@ title: Git
 homepage: https://git-scm.com
 tagline: |
   git: --fast-version-control
-description: |
-  > Git is a fast, scalable, distributed revision control system with an
-  > unusually rich command set that provides both high-level operations and full
-  > access to internals.
 ---
 
+## Updating `git`
+
+```bash
+webi git@stable
+```
+
+## Cheat Sheet
+
+> Git is a fast, scalable, distributed revision control system with an unusually
+> rich command set that provides both high-level operations and full access to
+> internals.
+
 Github's [Git 'Hello World'](https://guides.github.com/activities/hello-world/)
 is a good place to get started if you're new to git.
 
@@ -40,8 +48,17 @@ This will branch from the branch you're currently on.
 git checkout -b my-branch-name
 ```
 
+### How to rebase by default
+
+```bash
+git config --global pull.rebase true
+```
+
 ### How to rebase
 
+> To "rebase" simply means to undo any of your changes, apply updates from
+> another branch first, and then replay your changes.
+
 Rebase when fetching new updates
 
 ```bash