Recap - First Repo
Part of the Version Control section of Coddy's Terminal journey — lesson 8 of 58.
Challenge
EasyPut it all together. Starting from an empty folder:
- Initialize a new Git repository with
mainas the default branch (use the quiet flag). - Set the local repository name to
Recap Learnerand email torecap@coddy.tech(no--global). - Create a file called
notes.mdcontaining the textfirst repo. - Print the output of
git status --short.
The expected output is the single line ?? notes.md.
Try it yourself
Terminal
All lessons in Version Control
2Getting Started
Initialize A RepositoryThe .git FolderConfigure Your IdentityGit StatusRecap - First Repo8Merging
What Is A MergeFast-Forward MergeThree-Way MergeMerge ConflictsResolve A ConflictRecap - Merge Master11Feature Branch Project
Project OverviewInitialize Main3Tracking Changes
The Staging AreaGit AddGit CommitModifying A Tracked FileGit LogRecap - First Commits6Recipe Site Project
Project OverviewInitialize And Ignore