Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 278 Bytes

git.md

File metadata and controls

22 lines (17 loc) · 278 Bytes

To update the local list of remote branches:

git remote update origin --prune

Show all branches (including remotes)

git branch -a

Remove cached git files/folders

A folder:

git rm --cached .idea -rf

A file:

git rm --cached .env