Welcome to the CopyCat project — a practice project for WD#043 to create a static copycat of some well known official website!
For the team, here's a little cheat sheet of Git commands you should remember:
-
git init — Initialize a Git repository in current directory.
-
git status — Check the status of files in current branch.
-
git add |. — Add new files/changes to stage.
-
git commit -m "" — Commit the changes with an additional message.
-
git merge — Merge branch with master.
-
git branch | — List all branches, green text branch is current working branch | make new branch but don't jump to it.
-
git branch -M — Change name of current branch.
-
git remote add origin "" — Link local repo with a remote repo.
-
git checkout -b "" — Add new branch and jump onto it.
-
git checkout — Jump to another branch.