/git-practice

A repo to practice git.

Primary LanguageHTML

Git Practice

A repo to practice using git and its commands.

Subheader

List all hidden files by using the following command

cd directory
ls -la

Branching

This allows you to branch out from the original code base and isolate your work from others

To create and immediately switch to a new branch

git checkout -b branchname

To switch between branches

git checkout branchname

Git is fun.