Git Hacks and Tricks

From OPeNDAP Documentation
Revision as of 23:11, 2 January 2015 by Jimg (talk | contribs) (Created page with "These are simple things that are not really obvious from the git book or other sources ;How to see a list of 'conflicted' files after a merge :git diff --name-only --diff-fil...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
⧼opendap2-jumptonavigation⧽
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

These are simple things that are not really obvious from the git book or other sources

How to see a list of 'conflicted' files after a merge
git diff --name-only --diff-filter=U
How to see the different remote branches
git remote show origin
How do I see what would be pushed to a remote repo?
git push --dry-run
git diff origin/master # Assumes you have run git fetch, I think
git diff --stat origin/master # --stat just shows the file names stats, not the diffs