We all know how Github poorly tracks the progress of our programming time and people actually care about the Github contribution graph.
AutoGit is a VS Code extension that rightfully track your progress and log the pwd and present working file into a README.md file in a new repo only when a file change is detected every 30 minutes.
Features
Automatically tracks changes (creation, modification, deletion) in your workspace.
Appends the logs to a README.md in your Git repository.
Displays motivational quotes when no changes are detected.
Setup
Prerequisites
Git must be installed and configured on your system.
A local Git repository must exist for tracking changes.
Visual Studio Code must be installed.
Setting the Repository Path
Open the Command Palette (Ctrl+Shift+P or Cmd+Shift+P on macOS).
Search for the command AutoGit: Set Repository Path.
Enter the absolute path of your local Git repository.
That's it you are good to go!!!
Contributing
We welcome contributions from the community! Here's how you can help:
Fork this repository.
Create a new branch for your feature or bug fix:
git checkout -b feature-name
Commit your changes:
git commit -m "Describe your changes"
Push the branch to your fork:
git push origin feature-name
Open a pull request with a detailed description of your changes.