defaultselected icon
light-blueselected icon
purple-spaceselected icon
matrixselected icon
vs codeselected icon
mid-nightselected icon

git init

Copied Successfully!

REMOTES

Create a copy of a remote Git repository.

git clone <remote-path> copy

List remote repositories.

git remote copy

Add a remote repository.

git remote add <remote-name> <remote-path> copy

Download remote branch information, but do not merge anything.

git fetch <remote-name> copy

Merge a remote branch into the checked-out branch.

git merge <remote-name>/<branch-name> copy

List remote branches.

git branch -r copy

Push a local branch to another repository.

git push <remote-name> <branch-name> copy

Push a tag to another repository.

git push <remote-name> <tag-name> copy

Remotes

Search