Storing image assets in your repo and referencing in markdown Create an assets branch and make the initial commit git checkout --orphan assets git reset --hard cp /path/to/cat.png . git add . git commit -m 'Added cat picture' git push -u origin assets