I'm currently hosting a Github project that modifies the ~/.bashrc file. With the project being continuously updated, I'll need to know how to update the ~/.bashrc file without completely breaking it. As common courtesy and to prevent confusion, the changes I made start with
########## Added by Bash-Shortcuts ##########
and end with
######### End. https://github.com/OoLunar/Bash-Shortcuts/ ##########
Not quite sure how to go upon this, ideas?
EDIT: I ended up using @reichhart's answer, and added the line:
test -r ~/.Bash-Shortcuts/.commandsrc && . ~/.Bash-Shortcuts/.commandsrc
This solved my problem perfectly.