No way to `remove` or `rename` remote `upstream`
See original GitHub issueSteps to Reproduce:
- Start with this Extension with some forked repo
- Remove
upstream
remote
git remote remove upstream
upstream
will be back- Logs
$ git remote -v
origin https://github.com/gitpod-io/openvscode-server.git (fetch)
origin https://github.com/gitpod-io/openvscode-server.git (push)
upstream https://github.com/microsoft/vscode.git (fetch)
upstream https://github.com/microsoft/vscode.git (push)
$ git remote remove upstream
$ git remote -v
origin https://github.com/gitpod-io/openvscode-server.git (fetch)
origin https://github.com/gitpod-io/openvscode-server.git (push)
upstream https://github.com/microsoft/vscode.git (fetch)
upstream https://github.com/microsoft/vscode.git (push)
$
Issue Analytics
- State:
- Created 10 months ago
- Reactions:1
- Comments:7 (3 by maintainers)
Top Results From Across the Web
How do I rename an existing Git remote? - Beanstalk Help
1. Confirm the name of your current remote by running this command: git remote -v · 2. Now that the current remote name...
Read more >How to remove remote origin from a Git repository
Instead of removing and re-adding, you can do this: git remote set-url origin git://new.url.here. See this question: How to change the URI ...
Read more >How to Rename a Local or Remote Branch in Git
Renaming a remote branch is not as straightforward as renaming a local ... Step 1: Delete the old name by running git push...
Read more >How To Rename a Local and Remote Git Branch - phoenixNAP
1. Verify the local branch has the correct name: git branch -a · 2. Next, delete the branch with the old name on...
Read more >Learn How to Rename a Local and Remote Git Branch
No, in order to rename a remote Git branch you need to delete the old branch name, and then push the correctly named...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@alexr00 as the original reporter of the Gitpod issue I really appreciate your solution - protecting existing functionality for novice users but attempting to take notice when folks doing advanced stuff (like me in this situation) try to push against it. Thank you!
Sounds good, thanks 👍