TAG

Git

git reset examples [hard vs soft vs mixed]

The git reset command changes your repository and working directory to a known state. Specifically, git reset adjusts the HEAD ref to a given commit, and by …

By admin · 10 min read · GIT

Git rename branch - local and remote (PROPERLY)

The three steps to rename branch in git. Step 1; git branch -m old_branchname new_branchname, Step 2: git push origin :old_branchname new_branchname, Step 3: …

By admin · 8 min read · GIT