Git - Remote Repositories
After running
git fetch origin, you run git log HEAD..origin/main. What does this command show?git fetch origin, you run git log HEAD..origin/main. What does this command show?git log A..B shows commits reachable from B but not from A.
HEAD..origin/main lists commits on remote branch not in local current branch.
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions