This is a very minor accessibility issue but I wonder if anyone has addressed it:
Whenever I do git status
the files appear in alphabetical order (as they should):
❯ git status
On branch feature
Untracked files:
(use "git add <file>..." to include in what will be committed)
src/source.cpp
src/source.hpp
nothing added to commit but untracked files present (use "git add" to track)
However, I would like my headers to appear before my implementation files. One reason is that whenever I complete a bunch of work, I like to do git add -p
to add stage the relevant files. It would be much nicer if I could add the headers first so that I can follow up with the implementation afterwards.
Is there some way to customize git so that I can define my own ordering of files? Something like "alphanumeric for everything before the period, then h
takes precedence over everything else in the file extension."
Is your question about
add -p
orstatus
? Because if you only want to add your changed header files, you can specify them via wildcard:If you always want to add all your files in the same order of extensions, you can define a Git alias to simplify your life and save you some keystrokes: