question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

No way to `remove` or `rename` remote `upstream`

See original GitHub issue

Steps 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:open
  • Created 10 months ago
  • Reactions:1
  • Comments:7 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
froboycommented, Dec 8, 2022

@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!

1reaction
jeanp413commented, Nov 23, 2022

We can even go one step further: if we notice that we’ve add the same upstream remote twice in one “session”, which would imply that you’re trying get rid of or otherwise modify the upstream remote that we depend on, we can show a notification suggesting that you change some settings.

Sounds good, thanks 👍

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found