Some helpful GIT Commands:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Undo all changes | |
# ---------------- | |
git reset --hard origin/<branch_name/master> | |
git pull | |
# Overwrite Local Files | |
# --------------------- | |
git fetch --all | |
git reset --hard origin/<branch_name/master> | |
# OR | |
git reset --hard origin/<branch_name/master> | |
# Undo Specific files | |
# ------------------- | |
git checkout -- <filename.txt> | |
# To get git commits in a certain time period | |
# ------------------------------------------- | |
git log --pretty=format:"%ad - %an: %s" --after="2022-03-01" --until="2022-04-01" | |
# GIT remove saved username and password | |
# -------------------------------------- | |
git config --system --unset credential.helper |