Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 450 Bytes

File metadata and controls

21 lines (15 loc) · 450 Bytes

GIT

Bump a package version

npm version [major | minor | patch]

Changing a remote repository's URL

$ git remote -v
> origin [email protected]:OWNER/REPOSITORY.git (fetch)
> origin [email protected]:OWNER/REPOSITORY.git (push)

$ git remote set-url origin https://github.com/OWNER/REPOSITORY.git

$ git remote -v
> origin https://github.com/OWNER/REPOSITORY.git (fetch)
> origin https://github.com/OWNER/REPOSITORY.git (push)