Skip to content

Commit e20d5a6

Browse files
committed
initial commit
0 parents  commit e20d5a6

6 files changed

Lines changed: 86 additions & 0 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
*.vsix

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## 1.0.0
2+
3+
- Initial release

LICENSE

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
This is free and unencumbered software released into the public domain.
2+
3+
Anyone is free to copy, modify, publish, use, compile, sell, or
4+
distribute this software, either in source code form or as a compiled
5+
binary, for any purpose, commercial or non-commercial, and by any
6+
means.
7+
8+
In jurisdictions that recognize copyright laws, the author or authors
9+
of this software dedicate any and all copyright interest in the
10+
software to the public domain. We make this dedication for the benefit
11+
of the public at large and to the detriment of our heirs and
12+
successors. We intend this dedication to be an overt act of
13+
relinquishment in perpetuity of all present and future rights to this
14+
software under copyright law.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19+
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22+
OTHER DEALINGS IN THE SOFTWARE.
23+
24+
For more information, please refer to <http://unlicense.org/>

README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Git Toolbox README
2+
3+
## About Git Toolbox
4+
5+
**Git Toolbox** is a curated collection of essential Git extensions for Visual Studio Code. It provides a set of tools to streamline your workflow and improve version control management. Ideal for both beginners and experienced developers.
6+
7+
## Included Tools
8+
9+
Here are the extensions included in **Git Toolbox**:
10+
11+
- [Git Blame](https://marketplace.visualstudio.com/items?itemName=waderyan.gitblame) - Show git blame information in the status bar.
12+
- [Git Graph](https://marketplace.visualstudio.com/items?itemName=mhutchie.git-graph) - Visualize your repository's history as a graph.
13+
- [Git History](https://marketplace.visualstudio.com/items?itemName=donjayamanne.githistory) - View and search git log history.
14+
- [Git History Diff](https://marketplace.visualstudio.com/items?itemName=huizhou.githd) - A powerful extension for viewing diff history.
15+
- [Git Stash](https://marketplace.visualstudio.com/items?itemName=arturock.gitstash) - Manage your git stashes.
16+
- [Gitignore](https://marketplace.visualstudio.com/items?itemName=codezombiech.gitignore) - Syntax highlighting and autocompletion for `.gitignore` files.
17+
18+
19+
**Enjoy Git Toolbox!**

icon.png

2.21 KB
Loading

package.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"name": "git-toolbox",
3+
"displayName": "Git Toolbox",
4+
"description": "Git Toolbox is a powerful collection of Git extensions for Visual Studio Code. It streamlines version control with tools like Git Blame, Git Graph, Git History, and more, helping developers manage repositories and track changes efficiently.",
5+
"version": "1.0.0",
6+
"license": "Unlicense",
7+
"icon": "icon.png",
8+
"publisher": "gondor",
9+
"engines": {
10+
"vscode": "^1.94.0"
11+
},
12+
"homepage": "https://github.com/GnomGad/git-extension-pack",
13+
"repository": {
14+
"type": "git",
15+
"url": "https://github.com/GnomGad/git-extension-pack"
16+
},
17+
"bugs": {
18+
"url": "https://github.com/GnomGad/git-extension-pack/issues"
19+
},
20+
"categories": [
21+
"Extension Packs"
22+
],
23+
"keywords": [
24+
"git",
25+
"toolbox",
26+
"version control",
27+
"repository",
28+
"extensions"
29+
],
30+
"extensionPack": [
31+
"waderyan.gitblame",
32+
"mhutchie.git-graph",
33+
"donjayamanne.githistory",
34+
"huizhou.githd",
35+
"arturock.gitstash",
36+
"codezombiech.gitignore"
37+
]
38+
}

0 commit comments

Comments
 (0)