Question stemming from weak git knowledge: victoria.sh does git pull to update. If the user's current branch is master then I think this is ok. If user's current branch is my_branch does the desired action happen? My understanding is that git pull in that scenario will pull the changes from the tracked remote branch, so master would not be updated?
Question stemming from weak git knowledge: victoria.sh does
git pull
to update. If the user's current branch ismaster
then I think this is ok. If user's current branch ismy_branch
does the desired action happen? My understanding is thatgit pull
in that scenario will pull the changes from the tracked remote branch, so master would not be updated?