gitopendiffs

This commit is contained in:
Amber 2020-11-23 15:27:10 +01:00
parent eec2108ce7
commit 11171e55e5
1 changed files with 14 additions and 1 deletions

15
.bashrc
View File

@ -231,7 +231,20 @@ gitdelbranch() {
}
gitopendiffs() {
vim -p `git diff --name-only origin/master | sed 's/src\///g'`
myhelp() {
echo 'This tool is usefull to open in vim the diff with a branch and a branch in origin'
echo 'Before to launch place in the repository'
}
if [ "$1" == '-h' ]; then
myhelp
return 1
fi
if [ $1 == '']; then
branch='master'
else
branch=$1
fi
vim -p `git diff --name-only 'origin/'$branch | sed 's/src\///g'`
}
export PATH=~/bin/:$PATH