Skip to content

Instantly share code, notes, and snippets.

@lbarqueira
Last active October 6, 2020 09:59
Show Gist options
  • Save lbarqueira/33637a2be2573eebc9679ff32bcc7aa2 to your computer and use it in GitHub Desktop.
Save lbarqueira/33637a2be2573eebc9679ff32bcc7aa2 to your computer and use it in GitHub Desktop.
How to commit to your own GitHub repository - first, remove the remote repository associated using git remote rm origin - https://sung.codes/blog/2017/10/01/push-git-cloned-repository-github/
C:\codevscode\network_async\Clima-Flutter>git remote -v
origin https://github.com/londonappbrewery/Clima-Flutter.git (fetch)
origin https://github.com/londonappbrewery/Clima-Flutter.git (push)
C:\codevscode\network_async\Clima-Flutter>git remote rm origin
C:\codevscode\network_async\Clima-Flutter>git remote -v
C:\codevscode\network_async\Clima-Flutter>git remote -v
origin https://github.com/lbarqueira/Clima-Flutter.git (fetch)
origin https://github.com/lbarqueira/Clima-Flutter.git (push)
C:\codevscode\network_async\Clima-Flutter>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment