Is there a functionality in git where I could compare my local files to a git source control prior to committing changes?
Of-course you can do.
Using
git diff
command without any arguments: will compare each modified files in your file system against the files in the current checked-out branch (or) tag.Using
git diff <tag(or)branch name>
: will compare each modified files in your file system against the files in the specified branch (or) tag.Using
git diff <path/to/file_name (or) path/to/folder>
: will compare the specified file or files in the folder in your file system against the current checked-out branch (or) tag.Using
git diff <tag1(or)branch1 name> <tag2(or)branch2 name>
: will compare all modified files between two branches / tags.
There are many options, you can pass to 'git diff' command to format your output. Here I've listed a few:
git diff --name-only
: Show only names of changed files, not the contents.git diff --name-status
: Show only names and status of changed files.git diff --cached (or --staged)
: compares only the files which are staged/indexed.
for more information: execute git diff --help
in your git bash.
FYI: git diff
will generate output in command line. If you want to see the output in some visual tools, use git difftool
.
Using git difftool
: you can configure the git to use diff/merge tool to compare files.
Checkout this link: use Winmerge inside of Git to file diff
You can pass all git diff
arguments and options to git difftool
as well.
I like to use
git status
It will show you what files have changed and what you are tracking. You can then use
git diff
or the more GUI friendly
gitk
To see the diff.
I prefer to use this method.
A script for comparing
#!/bin/sh
( # execute in a subshell so you can continue
# working in the current shell
set -o xtrace # bash setting that echos each command before it's executed
> /tmp/auto_bcompare_log # truncate existing log file
BCOMP_PATH=/usr/bin/bcompare
BRANCH="$1" # get branch argument from command line
TEMPDIR=`mktemp -d` # get a temp directory
CWD=`pwd` # remember the current directory
git clone $CWD $TEMPDIR
cd $TEMPDIR
git checkout $BRANCH
cd $CWD
$BCOMP_PATH $CWD $TEMPDIR
rm -rf $TEMPDIR
) >> /tmp/auto_bcompare_log 2>&1 < /dev/null & # background and redirect
# stdout/stderr/stdin
The above script is definitely _not_ written by me. I took it from the net, but not sure of the sources. Save this in your repo as compare.sh. Make sure you give the correct path for the bcompare file.
For comparing before commit.
./compare.sh <branch_you_want_to_compare>
What this script basically does is that, it checkouts the branch that you give as a parameter to a temp directory and opens up for a comparison with your pwd. With this you can review your changes before committing. I hope this is what you want.
git diff <branch_you_want_to_compare>
? –
Dupre Since commits are easy to amend/change before they're pushed, I find it easier to commit, and then at the log to see what I changed.
In case it's not what I'm expecting, amend, reset, rebase -i, etc...
© 2022 - 2024 — McMap. All rights reserved.