install.fairie/dotfiles/.vim/plugged/nerdtree/.github/PULL_REQUEST_TEMPLATE.md
Git E2E Dev Test Username a05e8babb7 git subrepo clone https://github.com/scrooloose/nerdtree.git ./dotfiles/.vim/plugged/nerdtree
subrepo:
  subdir:   "dotfiles/.vim/plugged/nerdtree"
  merged:   "fc85a6f0"
upstream:
  origin:   "https://github.com/scrooloose/nerdtree.git"
  branch:   "master"
  commit:   "fc85a6f0"
git-subrepo:
  version:  "0.4.3"
  origin:   "???"
  commit:   "???"
2022-10-18 10:36:34 -04:00

22 lines
1.1 KiB
Markdown

### Description of Changes
Closes # <!-- Enter the issue number this PR addresses. If none, remove this line. -->
---
### New Version Info
#### Author's Instructions
- [ ] Derive a new `MAJOR.MINOR.PATCH` version number. Increment the:
- `MAJOR` version when you make incompatible API changes
- `MINOR` version when you add functionality in a backwards-compatible manner
- `PATCH` version when you make backwards-compatible bug fixes
- [ ] Update [CHANGELOG.md](https://github.com/scrooloose/nerdtree/blob/master/CHANGELOG.md), following the established pattern.
#### Collaborator's Instructions
- [ ] Review [CHANGELOG.md](https://github.com/scrooloose/nerdtree/blob/master/CHANGELOG.md), suggesting a different version number if necessary.
- [ ] After merging, tag the commit using these (Mac-compatible) bash commands:
```bash
git checkout master
git pull
sed -n "$(grep -n -m2 '####' CHANGELOG.md | cut -f1 -d: | sed 'N;s/\n/,/')p" CHANGELOG.md | sed '$d'
git tag -a $(read -p "Tag Name: " tag;echo $tag) -m"$(git show --quiet --pretty=%s)";git push origin --tags
```