git commands

by Yury

CSS

* {
  background: #1e1e1e;
}

JavaScript

/*
Use git branch -a (both local and remote branches) or git branch -r (only remote branches) to see all the remotes and their branches. You can then do a git checkout -t remotes/repo/branch to the remote and create a local branch.

There is also a git ls-remote command to see all the refs and tags for that remote.

git fetch

git branch -r

git checkout <branch_name>















*/