8
Git master'ı özellik şubesine birleştir
Diyelim ki Git'te şu durum var: Oluşturulan bir havuz: mkdir GitTest2 cd GitTest2 git init Master'da bazı değişiklikler yapılır ve taahhüt edilir: echo "On Master" > file git commit -a -m "Initial commit" Feature1 ustası dallanmış ve bazı çalışmalar yapılmıştır: git branch feature1 git checkout feature1 echo "Feature1" > featureFile …