QuestionQ5
701.3 Source Code ManagementThe following output is produced by git branch:
development
main
production
* staging
How can every change from the development branch be integrated into the staging branch?
- A git stash development
- B git merge development
- C git branch --merge development
- D git merge development..staging
- E git cp --merge development .
Community Discussion