Last active
October 6, 2020 09:59
-
-
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/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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