You created the branch feat/oracle-rescue-tool but the commits are still on master. The branch is empty.
You need to either:
- Cherry-pick the commits to the new branch, OR
- Reset and recommit on the new branch
- Open Task Manager (Ctrl+Shift+Esc)
- Find gh.exe process
- Click "End Task"
cd C:\Users\TOSHIBA\Desktop\tikka
git status
git log --oneline -3You should see your commit 7e067e5 on master.
git checkout feat/oracle-rescue-toolgit cherry-pick 7e067e5git push -u origin feat/oracle-rescue-toolGo to: https://github.com/crackedstudio/tikka/pulls Click "New Pull Request"
- Click "Current Branch" dropdown
- Select "master"
- "feat(oracle): Add comprehensive rescue tool for failed jobs"
- Select "Cherry-pick commit..."
- Choose branch:
feat/oracle-rescue-tool
- Click "Current Branch" dropdown
- Select "feat/oracle-rescue-tool"
- Click "Push origin" button
- Click "Create Pull Request" button
- Go to: https://github.com/crackedstudio/tikka/branches
- Find
feat/oracle-rescue-tool - Click delete (trash icon)
- Switch to "master" branch
- You should see your commit
- Click "Current Branch" dropdown
- Click "New Branch"
- Name:
feat/oracle-rescue-tool - Important: Make sure "Create branch based on: master" is selected
- Click "Create Branch"
- Click "Publish branch" button
- Click "Create Pull Request" button
After following any option, verify:
git checkout feat/oracle-rescue-tool
git log --onelineYou should see:
7e067e5 feat(oracle): Add comprehensive rescue tool for failed jobs
Then check files:
ls oracle/src/rescue/You should see:
- rescue.module.ts
- rescue.service.ts
- rescue.controller.ts
- rescue.cli.ts
- rescue.service.spec.ts
When you created the branch, you were already on master with the commit. Creating a new branch doesn't automatically move commits - it just creates a pointer. You need to either:
- Create the branch BEFORE committing, OR
- Cherry-pick/move commits to the new branch after creating it
It's the easiest and most visual way to fix this. Just:
- Open GitHub Desktop
- Go to master branch
- Right-click your commit → Cherry-pick to feat/oracle-rescue-tool
- Switch to feat/oracle-rescue-tool
- Push
- Create PR
Done! 🚀