https://github.com/alwarg/git-branch-files
The extension will open the files for the current branch.
https://github.com/alwarg/git-branch-files
Last synced: about 1 year ago
JSON representation
The extension will open the files for the current branch.
- Host: GitHub
- URL: https://github.com/alwarg/git-branch-files
- Owner: AlwarG
- License: mit
- Created: 2021-07-05T09:48:02.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-07-06T14:04:20.000Z (almost 5 years ago)
- Last Synced: 2025-02-16T20:27:38.510Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 41 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Git-Branch-Files for VS Code
The extension will open the files for the current branch.
## 1. open changed files

## 2. close current and open changed files

# Requirements
1. Your branch name should not be a source(master or main) branch.
2. It will open only the first 15 changed files.
# Configuration
```javascript
"git-branch-files": {
"maximum_limit": 15,
"source_branch": "master",
"excluded_filetypes": []
},
```
1. **maximum_limit** - The maximum number of files to be open and its default value is 15.
2. **excluded_filetypes** - Here, you can give the file types which should not be open(example: 'json').
3. **source_branch** - The source branch of the repository and its default value is master.
# License
This project is licensed under the [MIT License](https://github.com/AlwarG/git-branch-files/blob/main/LICENSE).