Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/harshitv21/github-basics-exercise
Github exercise from Colt's Steele Git & Github Bootcamp.
https://github.com/harshitv21/github-basics-exercise
Last synced: 3 days ago
JSON representation
Github exercise from Colt's Steele Git & Github Bootcamp.
- Host: GitHub
- URL: https://github.com/harshitv21/github-basics-exercise
- Owner: Harshitv21
- Created: 2023-10-01T18:47:20.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-01T19:11:28.000Z (about 1 year ago)
- Last Synced: 2023-10-01T22:41:19.030Z (about 1 year ago)
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Github Basics Exercise
1. Create a new repository locally on your machine.
2. Create a new Github repository. Name it whatever you want.
3. Connect your local repo to the Github repo.
4. Optional: rename the default branch from master to main.
5. Make a new file called `favorites.txt` Leave it empty. Make your first commit on the `main` branch.
6. Push up your `main` branch to Github! Make sure you see your empty `favorites.txt` file on Github.
7. Next, create two branches: `foods` and `movies`
8. Switch to the `foods` branch. Add three (or more) of your favorite foods to the `favorites.txt` file. Add and commit your changes on the `foods` branch.
9. Switch to the `movies` branch and add three or more of your favorite movies to the `favorites.txt` file. Add and commit your changes on the movies branch.
10. Push up your `foods` branch to Github. Make sure you see it on Github!
11. Push up your `movies` branch to Github. Make sure you see it on Github!
12. Merge the `foods` branch into the `main` branch. Then merge the `movies` branch into the `main` branch. If necessary, resolve conflicts so that you end up with your favorite foods and favorite movies in the same `favorites.txt` file.
13. Push up the latest work on your `main` branch to Github.[Link](https://plum-poppy-0ea.notion.site/Github-Basics-Exercise-1c12200326db47d7890702017602d698) of notion page for this exercise.
---