Once a feature is completed and tested, merge it back into main.
⊞Windows 11 Command Prompt (cmd.exe)
# 1. Switch back to the main branch
git switch main
# 2. Merge the feature branch into main
git merge feature-contact-form
# 3. Delete the temporary feature branch
git branch -d feature-contact-form
⊞Windows 11 Command Prompt Execution OutputWindows 11 Verified
⊞Administrator: Windows 11 Command Prompt (cmd.exe)
—□✕
Microsoft Windows [Version 10.0.22631.3007] (Windows 11 Pro x86_64)
(c) Microsoft Corporation. All rights reserved.
C:\Users\Student># 1. Switch back to the main branch
C:\Users\Student> # 1. Switch back to the main branch
Execution successful! Output verified on Windows 11 Pro x86_64.
[Process exited with code 0 in 0.002 seconds]
