- Create a new directory on your Desktop called git_exercises and cd into that directory.
mkdir git_excercises
cd git_excercises
- Using
git init, create a new repository.
git init
- Using the
touchcommand, create empty files called foo and bar in your repository directory.
touch foo
touch bar
- Enter
lsto make sure they were added.
ls
- Check your
git status.
git status
- Using
git add foo, addfooto the staging area.
git add foo
Confirm with git status that it worked.
git status
- Using
git commit -madd an appropriate message, add foo to the repository.
git commit -m "foo add"
- Check your
git status.
git status
- Using
git add bar, add bar to staging area. Confirm with git status that it worked.
git add bar
- Now run
git commit -moption, and add the message“Add bar”.
git commit -m "add bar"
- Using
git log, confirm that the commits made in the previous exercises worked correctly.
git log
- Use touch to create an empty file called baz.
touch baz
- Check that it's there by entering
ls.
ls
- Check the status of your git.
git status
- Add baz to the staging area using
git add ., then commit with the message"Add bazz".
git add .
git commit -m "Add bazz"
- Realizing there’s a typo in your commit message, change bazz to baz using
git commit --amend -m Add baz.
git commit --amend -m "Add baz"
- Run git log to get the id of the last commit, then view the diff using
git show <id>to verify that the message was amended properly.
git show <id>
- The
git logcommand shows only the commit messages, which makes for a compact display but isn’t particularly detailed. Verify by runninggit log -pthat the-poption shows the full diffs represented by each commit. Pressqto escape.
git log
git log -p
q
- Create a file
README.md, add and commit it.
touch README.md
git add .
git commit -m "Add README"
- Got to github and create a new repository. Connect your local repo to the remote one.
git remote add origin https://github.com/KevinBrutus530/gitlabHW.git
- Open your README.md and and add the line
# hello thereat the top ofREADME.mdand save.
code .
'# hello there'
command + s
- Check the status, then add, check the status, and then commit the new line with a commit message of your choice. Verify using
git statusthat the change was committed as expected.
git status
git add .
git status
git commit -m "add text to readme"
git status
- Push your changes:
git push origin master. Refresh your github and click on the commit to verify the changes.
git push origin master
- Using the markdown below, add a line at the end of the README with a link to the official Git documentation:
~/repos/website/README.md
For more information on Git, see the
[official Git documentation](https://git-scm.com/).-
Commit your change with an appropriate message. Why not?
-
Push your change to GitHub. By refreshing your browser, confirm that the new line has been added to the rendered README. Click on the “official Git documentation” link to verify that it works.