From bb9517f76bc15be8da009915bf6a224ed3fa640c Mon Sep 17 00:00:00 2001
From: Yves Noirjean <ynoir@bsse-vpn-244.ethz.ch>
Date: Tue, 24 Oct 2017 18:14:16 +0200
Subject: [PATCH] not checking out master - branch is created from current
 branch; adding only modified files to git

---
 openbis_all/source/bash/build/branch.sh | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/openbis_all/source/bash/build/branch.sh b/openbis_all/source/bash/build/branch.sh
index 8c7a191dd21..ac18e940cc4 100755
--- a/openbis_all/source/bash/build/branch.sh
+++ b/openbis_all/source/bash/build/branch.sh
@@ -20,8 +20,6 @@ fi
 cd "$(dirname "$0")/../../../.."
 
 # create branch in git from master
-git checkout master
-git pull
 git checkout -b $1
 git push -u origin $1
 
@@ -56,7 +54,9 @@ for project in $GRADLE_PROJECTS; do
 	for file in build.gradle javaproject.gradle gwtdev.gradle query-api.gradle proteomics-api.gradle screening-api.gradle admin-console.gradle clients.gradle; do
 		if [ -s $file ]; then
 			sed -f sed_commands $file > $file.tmp;
-			mv $file.tmp $file;	
+			mv $file.tmp $file;
+			# add to git
+			git add $file
 		fi;
 	done
 	
@@ -65,6 +65,5 @@ for project in $GRADLE_PROJECTS; do
 done
 
 # commit dependency versions
-git add --all
 git commit -m "fixed dependencies of $1";
 git push
-- 
GitLab