MyWebsite Bootstrap

Tag: git

Some useful git commands

2024-04-21

Commands

list all branches
git branch -a

get the difference between two branches, including a local branch and a remote branch
git diff <mainbranch_path> <remotebranch_path>

read more