|
You are here |
kewah.com | ||
| | | | |
blog.danskingdom.com
|
|
| | | | | Git is super powerful, but can also be confusing, especially when using the command line interface (CLI). It has so many commands, and I only regularly use a handful of them. | |
| | | | |
8yd.no
|
|
| | | | | Git squash takes your commits and squashes them together, usually into one commit. Useful for creating one commit if you've got a lot of smaller commits that creates a messy Git history. Git rebase ... | |
| | | | |
pboyd.io
|
|
| | | | | Small Git commits are great when working, but they aren't so great when looking at the history. This post examines the commands to make a clean Git history. | |
| | | | |
citizen428.net
|
|
| | | I originally wrote this article for Codementor in October 2014. It should have something for everyone, from fairly new git users to experienced developers. 1. Discard local file modifications Sometimes the best way to get a feel for a problem is diving in and playing around with the code. Unfortunately, the changes made in the process sometimes turn out to be less than optimal, in which case reverting the file to its original state can be the fastest and easiest solution: | ||