Skip to content

Commit

Permalink
🧑‍💻chore(vscode): add new branch in Git Graph onLoad settings
Browse files Browse the repository at this point in the history
This commit introduces a new feature by adding a 'Branches' section under the 'Settings' in the .vscode/settings.json file. The addition allows for specifying

- Add new branch settings in VSCode settings.json

This commit adds a new section for branches under the 'Branches' setting in the .vscode/settings.json file. The new setting allows for specifying a more comprehensive glob pattern to include all branches, enhancing the visibility and management of branches within the Git graph.
  • Loading branch information
chriskyfung committed Dec 6, 2024
1 parent 251560b commit aed0e10
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@
"name": "No origin/gh-pages",
"glob": "remotes/origin/[^g][^h]*[^s]"
},
{
"name": "Branches",
"glob": "*/*"
},
{
"name": "Stashes",
"glob": "stash"
Expand All @@ -36,8 +40,7 @@
"git-graph.repository.onLoad.showSpecificBranches": [
"master",
"remotes/origin/master",
"--glob=heads/[^g][^h]*[^s]",
"--glob=remotes/origin/[^g][^h]*[^s]",
"--glob=*/*",
"--glob=stash",
"--glob=tags/*"
],
Expand Down

0 comments on commit aed0e10

Please sign in to comment.