This repository contains projects deployed over RPi.
Quick guide for Markdown.
- Getting lost commits
git reflog
git checkout HEAD@{...}
- Adding tag
git tag <tag-name> <first 5 digits of commit> -m "message"
git push origin --tags
- Deleting tag
git tag -d <tag-name>
git push origin --tags
- keeping the local modifications somehow,
git stash
git pull origin master
- deleting a branch
git branch -d <branch_name>
git push origin --delete <branch_name>