|
You are here |
micahkepe.com | ||
| | | | |
misha.brukman.net
|
|
| | | | | Useful Git aliases for streamlined workflows. | |
| | | | |
blog.gitbutler.com
|
|
| | | | | What `git config` settings should be defaults by now? Here are some settings that even the core developers change. | |
| | | | |
betterdev.blog
|
|
| | | | | Git allows us to define aliases, which are our own commands we can use. Here I will show Git aliases that I use in everyday work. With explanation. | |
| | | | |
andreabergia.com
|
|
| | | Git has an excellent tool designed to help you reorder the commit history: interactive rebase. This can be excellent if you want to keep the history clean, so that it helps other programmers understand the logic behind the changes rather than the actual sequence of commits. Lets walk through an example. Lets write some history Lets start by creating an empty project in a new directory: $ git init . | ||