Explore >> Select a destination


You are here

www.linuxuprising.com
| | www.everydaylinuxuser.com
9.9 parsecs away

Travel
| | This guide acts as a Linux jargon buster explaining terms such as distributions, desktop environments, UEFI, BIOS, partitions, package managers, windows managers, display managers, panels, the terminal and many more.
| | averagelinuxuser.com
9.0 parsecs away

Travel
| | So, you've installed Ubuntu MATE, now what? Check out this post to learn about my top 21 things to do after installing Ubuntu MATE.
| | www.webupd8.org
10.3 parsecs away

Travel
| | MATE Dock Applet Sees New Release ~ Ubuntu / Linux blog
| | emmanuelbernard.com
95.1 parsecs away

Travel
| Tig is a textual GUI for git which lets you manipulate your git repo like GitX or SourceTree but without leaving your terminal. In particular, you can "graphically" do git add --interactive. I find it easier to do my chunk surgery when I only want to apply parts of a file change. The documentation is a bit terse so let me give you a rundown. Navigate diffs launch tig s # to see the status view arrows or j/k # to select the file diff to look at enter # to see changes in that file, this is the stage view, alternatively hit c j/k # to navigate up and down the file lines Select specific chunks (go down to a specific chunk) u # to select the whole chunk ! # to delete/reset the whole chunk change (you must be on the chunk header line) ; caution this change will be gone forever Select specific lines (in a chunk on a specific line) 1 (one) to add the specific line to stage ! and then y to delete/reset the specific line ; caution this line will be gone forever To undo the staging and remove the line, select the file in the changes to be committed section 1 (one) to move the line back to the non-stage area Other goodies Shift+R to refresh the diff changes in case you update the file in your editor and want a updated diff You can delete/reset changes to a whole file by hitting ! and then y in the status view. Make sure to select the right file as the changes will be gone forever.