Git way of handling local configuration -
so example have project on git , 1 file responsible various configurations, must change file locally make project build on local machine, @ same time want pull file when global configuration changed.
so memorize our local changes, checkout, pull, reapply changes.
it nice if git handle portion of file local specific , ignore during pull/push merging.
various configuration files have different comment sections, if git check if comment line contains keywords this:
##### git ignore section starts, put local changes here ##### .. add local changes ##### git ignore section ends #####
or this
/* git ignore section starts */ .. add local changes here /* git ignore section ends */
so git keyword "git ignore section" , ignore between tags...
is there already?