Controlling the order files appear in Git

192 Views Asked by At

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."

1

There are 1 best solutions below

2
On

Is your question about add -p or status? Because if you only want to add your changed header files, you can specify them via wildcard:

git add -p '**.h'

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:

git config alias.addall '!f(){ git add -p "**.hpp"; git add -p "**.cpp";};f'