Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vector-of-bool/vscode-gitflow
Gitflow integration for Visual Studio Code
https://github.com/vector-of-bool/vscode-gitflow
Last synced: 12 days ago
JSON representation
Gitflow integration for Visual Studio Code
- Host: GitHub
- URL: https://github.com/vector-of-bool/vscode-gitflow
- Owner: vector-of-bool
- Created: 2016-04-28T06:36:52.000Z (over 8 years ago)
- Default Branch: develop
- Last Pushed: 2023-01-11T12:05:06.000Z (almost 2 years ago)
- Last Synced: 2024-10-27T03:18:52.109Z (17 days ago)
- Language: TypeScript
- Size: 392 KB
- Stars: 89
- Watchers: 5
- Forks: 22
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Gitflow integration for Visual Studio Code
This extension provides integration and support for [gitflow](http://nvie.com/posts/a-successful-git-branching-model/).
It is based on [this gitflow implementation](https://github.com/nvie/gitflow)
and intends to be fully compatible with it.# Getting Started
If you already have gitflow set up for your repository, just start execcuting
gitflow commands from the Command Palette!![Opening example](res/gitflow.png)
## Starting from Scratch
1. First, initialize git:
```sh
$ git init
```
2. Open the VS Code Command Palette and type 'gitflow'3. Select 'Initialize repository for gitflow'
![Initializing Git Flow](res/Step1.png)4. Follow the command prompts and accept the defaults...
![Defaults](res/defaults.PNG)5. Setup complete!
### Note
Development is ongoing. Please help support this project by trying it out
and submitting issues and feature requests to [the github page](https://github.com/vector-of-bool/vscode-gitflow).