Skip to content

Commit ec47cc0

Browse files
Update README.md
1 parent f1c5d1c commit ec47cc0

1 file changed

Lines changed: 18 additions & 10 deletions

File tree

README.md

Lines changed: 18 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ The following table provides an overview of the data that will be extracted and
2929
| unique visitors | Unique visitors represent the number of distinct individuals who have visited the repository during a specific time period. If the same user visits your repository multiple times within a specified period (typically 24 hours), they are counted as a single unique visitor. |
3030
| clones | Clones refer to the number of times the repository has been copied. When someone clones your repository, they make an exact replica of the repository, including all its files, branches, commit history, and other associated data. |
3131
| unique cloners | Unique cloners represent the number of distinct users who have performed at least one clone of the repository during a specific time period. Similar to unique visitors, unique cloners are counted only once, regardless of the number of clones they perform. |
32-
| watch | TBD |
33-
| fork | TBD |
34-
| star | TBD |
32+
| watch | Watching a repository means you opt to receive notifications about its activity. This includes new issues, pull requests, and other updates. Watching is more proactive than starring, as it means you want to stay up-to-date with what's happening in the repository. This is particularly useful when you want to keep track of developments or participate in discussions related to the project. |
33+
| fork | Forking a repository creates a copy of the original repository under your GitHub account. This action allows you to freely experiment with the code without affecting the original project. Forking is often the first step in contributing to an open-source project. After forking, you can make changes to the code in your forked repository, commit those changes, and then submit a "Pull Request" to the original repository, suggesting the changes you made. The maintainers of the original repository can then review your changes and decide whether to merge them into the main project. |
34+
| star | When you Star a repository, you are essentially bookmarking it. This action indicates that you have an interest in the repository and want to keep track of it. Starred repositories can be easily accessed from your profile, allowing you to find them quickly. It's a way of showing appreciation or support for a project without necessarily contributing to it directly. |
3535

3636
<br /><br />
3737

@@ -75,16 +75,24 @@ The <a href="https://github.com/analyticsinmotion/github-stats/blob/main/data/tr
7575

7676
github-stats
7777
├── .github
78-
│ └── workflows
79-
│ └── traffic.yml
78+
│ ├── workflows
79+
│ │ └── activity.yml
80+
│ │ └── traffic.yml
81+
│ └── assets
82+
│ └── images
8083
├── data
81-
│ └── traffic.csv
84+
│ ├── activity.csv
85+
│ └── traffic.csv
86+
├── src
87+
│ ├── activity.py
88+
│ └── traffic.py
8289
├── .gitignore
83-
├── CHANGELOG.md
90+
├── CHANGELOG.md
91+
├── LICENSE
8492
├── README.md
85-
── requirements.txt
86-
├── LICENSE
87-
└── traffic.py
93+
── requirements.txt
94+
95+
8896
<br /><br />
8997

9098

0 commit comments

Comments
 (0)