cara membatalkan asal jarak jauh

git remote remove origin

# If however, you wish to change to a new URL 
# you can use the following command instead of 
# removing and then adding again
git remote set-url origin https://github.com/USERNAME/REPOSITORY.git
# OR for SSH
git remote set-url origin [email protected]:USERNAME/REPOSITORY.git
Code Rabbi