I'm new to git, I did this:
git clone ssh://user@myserver.com/~/repo/oldsvn/
git checkout -b featurex
modified some files and then
git add file1 file2
git commit -m "Adding feature x"
$ git branch
* featurex
$ git show-ref
4fe94de84442a1f0c70b434d0facf33148834b7a refs/remotes/origin/oldsvn/release2
96840b05346dd98660951ac6a910bfa053b6828e refs/remotes/origin/oldsvn/release3
315b31c25ae6de0605ed20211939ea930de3d785 refs/remotes/origin/oldsvn/trunk
Now, I want my changes to be in the branches named release2 and release3.
What should I do? My branch is tracking the resources from which remote branch? -release2/file1 is different from release2/file1. I want to know who is the "father" of my branch.
Sorry, for sure someone will think these are easy questions. I have already tried with several commands (like git push origin master) and I all got are errors. Want to start from scratch this time.