https://github.com/LadyKerr/GitGoing
Beginner-friendly project focused on tracking progress and learning Git.
https://github.com/LadyKerr/GitGoing
git github learning-exercise learning-git learning-github
Last synced: 5 months ago
JSON representation
Beginner-friendly project focused on tracking progress and learning Git.
- Host: GitHub
- URL: https://github.com/LadyKerr/GitGoing
- Owner: LadyKerr
- License: mit
- Created: 2024-02-20T18:23:53.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-08T00:25:41.000Z (8 months ago)
- Last Synced: 2024-08-27T01:29:10.082Z (8 months ago)
- Language: JavaScript
- Size: 22.5 KB
- Stars: 12
- Watchers: 3
- Forks: 12
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - LadyKerr/GitGoing - Beginner-friendly project focused on tracking progress and learning Git. (JavaScript)
README
# GitGoing 🏃🏽♀️💨
GitGoing is a beginner-friendly project focused on tracking progress and learning how to use git and GitHub.## Getting Started 🛠️
1. You will need to have git installed on your local machine. You can download it [here](https://git-scm.com/downloads).
2. Once you have git installed, you will need to configure git. You can do this by running the following commands in your terminal.
```bash
git config --global user.name "Your Name"
git config --global user.email "Your Email"
```3. Fork the repository by clicking the "Fork" button in the upper right corner of the repository page.
> 💡 This will create a copy of the repository in your GitHub account.
4. Then, clone the forked repository to your local machine.
```bash
git clone https://github.com/YourHandle/GitGoing.git
```# Practice the git flow by following the steps below 🚀
### Step 1: Create a new branch and switch to new branch
Create a new branch using the following command:
```bash
git checkout -b
```Once you create your new branch, you will be switched to that branch with the following command:
```bash
git switch
```### Step 2: Make changes
You can add a new file, edit an existing file, or delete a file.
To keep things simple, let's edit the `index.html` file by changing the name to "GitGoing-YourLastName" on line 10.### Step 3: Stage your changes
Once you update the name, stage your changes using the following command:
```bash
git add .
```Or, you can stage the individual file you changed by using the following command:
```bash
git add index.html
```### Step 4: Commit your changes
Commit your changes using the following command:
```bash
git commit -m "Your commit message"
```### Step 5: Push your changes
Push your changes to the remote repository using the following command:
```bash
git push origin
```### Step 6: Create a pull request
Create a pull request on GitHub.
### Step 7: Review and merge your pull request
Review and merge your pull request on GitHub.
### Step 8: Delete your branch
Delete your branch using the following command:
```bash
git branch -d
```## Learning Resources:
- [Git Cheatsheet ↗](https://education.github.com/git-cheat-sheet-education.pdf)
- [Introduction to Git and GitHub ↗](https://github.com/skills/introduction-to-github)
- [GitHub Skills Courses ↗](https://skills.github.com/)
- [GitHub Foundations Certificate ↗](https://learn.microsoft.com/en-us/collections/o1njfe825p602p)## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
## License
[MIT](https://choosealicense.com/licenses/mit/)