benoit-bremaud / angular-social-network

Angular is better than Somfony
MIT License
1 stars 0 forks source link

Create feature branch #13

Open benoit-bremaud opened 3 months ago

benoit-bremaud commented 3 months ago

Create feature branch

Description Create a new branch for developing a specific feature.

Steps

  1. Checkout the development branch and pull the latest changes:
    git checkout development
    git pull origin development
  2. Create a new feature branch:
    git checkout -b feature/your-feature-name
  3. Develop the feature and commit changes:
    git add .
    git commit -m "Add your-feature-name"
  4. Push the feature branch to the remote repository:
    git push origin feature/your-feature-name
  5. Open a pull request to merge the feature branch into development

Criteria for Success

A new feature branch is created and pushed to the remote repository. A pull request is opened for merging the feature branch into development.