For example Id like to modify the login page, so it auto-logs me.
I want those changes to ONLY work on my development station and dont be visible in push. if I make it on a branch than i would have to somehow un-merge that change before every push.
is that supported by git?
Why don’t use setup a gitattributes filter driver?
Every time to checkout your directory, it will check through a script in the
smudgestep) for that file (and that file only) if certain condition are met (as in “this is or is not your development station”) and will modify the content accordingly.The
cleanstep would restore its content or at least ignore that particular modification.