Horje
rm remote git Code Example
git remove remote
$ git remote -v
# View current remotes
> origin  https://github.com/OWNER/REPOSITORY.git (fetch)
> origin  https://github.com/OWNER/REPOSITORY.git (push)
> destination  https://github.com/FORKER/REPOSITORY.git (fetch)
> destination  https://github.com/FORKER/REPOSITORY.git (push)

$ git remote rm destination
# Remove remote
$ git remote -v
# Verify it's gone
> origin  https://github.com/OWNER/REPOSITORY.git (fetch)
> origin  https://github.com/OWNER/REPOSITORY.git (push)
rm remote git
git remote add origin https://github.com/dk9071091/avnikreactjs.git
git branch -M main
git push -u origin main
Source: github.com
rm remote git
echo "# avnikreactjs" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/dk9071091/avnikreactjs.git
git push -u origin main
Source: github.com




Shell

Related
ubuntu install MariaDB Code Example ubuntu install MariaDB Code Example
linux quick format usb drive Code Example linux quick format usb drive Code Example
git add removed files Code Example git add removed files Code Example
wget to particular directory Code Example wget to particular directory Code Example
create file in linux using cat Code Example create file in linux using cat Code Example

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