A good[ish] website
Web development blog, loads of UI and JavaScript topics
Here’s a little cheat sheet to help deal with branches.
List branches:
$ git brach
List remote branches:
$ git branch --remote # Or -r for short
List remote branches that are not tracked:
$ git ls-remote --heads <remote-name>
Make a new branch based on the active branch:
$ git branch <branch-name>
Rename a branch:
$ git branch -m <old-name> <new-name>
Rename the active branch:
$ git branch -m <new-name>
Delete a branch in a safe manner:
$ git branch -d <branch-name>
Git docs on the -d
flag:
Delete a branch. The branch must be fully merged in its upstream branch, or in HEAD if no upstream was set with
If a branch that is not merged is wanted to be deleted, use the capital D -D
flag to force it:
$ git branch -D <branch-name>
Delete remote branch:
$ git branch -d -r origin/<branch-name>
Kernel.org has great git docs.
Comments would go here, but the commenting system isn’t ready yet, sorry.