Skip to content

Instantly share code, notes, and snippets.

View officialcjunior's full-sized avatar

Aswin C officialcjunior

View GitHub Profile
@jtdp
jtdp / gist:5443297
Last active April 2, 2025 22:15
See changes before pulling from remote git repository
# fetch the changes from the remote
git fetch origin
# show commit logs of changes
git log master..origin/master
# show diffs of changes
git diff master..origin/master
# apply the changes by merge..