Github_Basic
Github_Basic
example2
git checkout -b new-feature
example3
git switch -b new-feature
Squash Merge
git checkout main
git merge --squash feature-branch
git commit -m 'Merged feature-branch squash'
Commenting on an Issue
# To comment on an existing issue via GitHub UI:
1. Go to the specific issue page.
2. Scroll to the comments section.
3. Type your comment in the text box.
4. Click 'Comment'.
Closing an Issue
1. To close an issue, navigate to the issue page.
2. Click on Close issue button at the bottom of the page, or comment with Closes
#issue_number in a commit message.