-1

From the git master branch, I created a new feature branch feature_001. I created one more feature branch from master, feature_002. After finishing, I am trying to pull feature_001 changes in feature_002 also.

How can I achieve this in git?

1 Answers1

1
git checkout feature_002
git merge feature_001
JBallin
  • 8,481
  • 4
  • 46
  • 51