Mar 15, 2024

Helpful GIT Commands

 Some helpful GIT Commands:

# 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
view raw GIT.ps1 hosted with ❤ by GitHub