Showing posts with the label gitShow all

git cleanup

git verify-pack -v .git/objects/pack/ * .idx | sort -k3 -n | tail -5 git filter-repo \ --path-glob '*.zip' \ --path-glob '…

Read more

Delete git branch

// delete branch locally git branch - d localBranchName // delete branch remotely git push origin -- delete remoteBranchName // refresh branch li…

Read more

Add GitLab SSH Key

1. Update System sudo apt update sudo apt upgrade 2. Install git on local machine sudo apt install git 3. Check git version git --version 4. Git Configur…

Read more