Horje
git config remote.origin.url Code Example
git config remote.origin.url
# change remote url
git remote set-url origin https://github.com/USERNAME/REPOSITORY.git
git remote chage url
git remote -v
# View existing remotes
# origin  https://github.com/user/repo.git (fetch)
# origin  https://github.com/user/repo.git (push)

git remote set-url origin https://github.com/user/repo2.git
# Change the 'origin' remote's URL

git remote -v
# Verify new remote URL
# origin  https://github.com/user/repo2.git (fetch)
# origin  https://github.com/user/repo2.git (push)
change remote to use ssh git command
git remote add origin git@github.com:nikhilbhardwaj/abc.git




Shell

Related
how to install gulp Code Example how to install gulp Code Example
upgrade composer version Code Example upgrade composer version Code Example
git error needs merge Code Example git error needs merge Code Example
install npm ubuntu Code Example install npm ubuntu Code Example
uninstall webpack globally Code Example uninstall webpack globally Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
13