mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-03-23 17:49:57 +08:00
Merge branch 'dev'
This commit is contained in:
commit
2e2c407e8e
@ -7,7 +7,7 @@ function! SpaceVim#dev#releases#open() abort
|
|||||||
let is_dev = g:spacevim_version =~ 'dev'
|
let is_dev = g:spacevim_version =~ 'dev'
|
||||||
let releases = {
|
let releases = {
|
||||||
\ 'tag_name': (is_dev ? 'nightly' : g:spacevim_version),
|
\ 'tag_name': (is_dev ? 'nightly' : g:spacevim_version),
|
||||||
\ 'target_commitish': 'dev',
|
\ 'target_commitish': 'master',
|
||||||
\ 'name': (is_dev ? 'nightly' : 'SpaceVim v' . g:spacevim_version),
|
\ 'name': (is_dev ? 'nightly' : 'SpaceVim v' . g:spacevim_version),
|
||||||
\ 'body': (is_dev ? s:body() : SpaceVim#dev#releases#content()),
|
\ 'body': (is_dev ? s:body() : SpaceVim#dev#releases#content()),
|
||||||
\ 'draft': v:false,
|
\ 'draft': v:false,
|
||||||
|
@ -10,7 +10,7 @@ elif [ "$LINT" = "vimlint-errors" ]; then
|
|||||||
if [[ -f build_log ]]; then
|
if [[ -f build_log ]]; then
|
||||||
rm build_log
|
rm build_log
|
||||||
fi
|
fi
|
||||||
for file in $(git diff --name-only HEAD dev | grep .vim$);
|
for file in $(git diff --name-only HEAD master | grep .vim$);
|
||||||
do
|
do
|
||||||
/tmp/vimlint/bin/vimlint.sh -E -l /tmp/vimlint -p /tmp/vimlparser $file >> build_log 2>&1;
|
/tmp/vimlint/bin/vimlint.sh -E -l /tmp/vimlint -p /tmp/vimlparser $file >> build_log 2>&1;
|
||||||
done
|
done
|
||||||
|
@ -7,9 +7,9 @@
|
|||||||
[Gitter **Chat**](https://gitter.im/SpaceVim/SpaceVim) \|
|
[Gitter **Chat**](https://gitter.im/SpaceVim/SpaceVim) \|
|
||||||
[中文文档](http://spacevim.org/README_zh_cn/)
|
[中文文档](http://spacevim.org/README_zh_cn/)
|
||||||
|
|
||||||
[](https://travis-ci.org/SpaceVim/SpaceVim)
|
[](https://travis-ci.org/SpaceVim/SpaceVim)
|
||||||
[](https://ci.appveyor.com/project/wsdjeg/spacevim/branch/dev)
|
[](https://ci.appveyor.com/project/wsdjeg/spacevim/branch/master)
|
||||||
[](https://codecov.io/gh/SpaceVim/SpaceVim/branch/dev)
|
[](https://codecov.io/gh/SpaceVim/SpaceVim/branch/master)
|
||||||

|

|
||||||
[](LICENSE)
|
[](LICENSE)
|
||||||
[](doc/SpaceVim.txt)
|
[](doc/SpaceVim.txt)
|
||||||
|
@ -86,7 +86,7 @@ PR = Pull-Request
|
|||||||
|
|
||||||
##### Ideally for simple PRs (most of them):
|
##### Ideally for simple PRs (most of them):
|
||||||
|
|
||||||
- Branch from `dev`
|
- Branch from `master`
|
||||||
- One topic per PR
|
- One topic per PR
|
||||||
- One commit per PR
|
- One commit per PR
|
||||||
- If you have several commits on different topics, close the PR and create one PR per topic
|
- If you have several commits on different topics, close the PR and create one PR per topic
|
||||||
@ -100,6 +100,7 @@ Those PRs are usually cherry-picked.
|
|||||||
Squash only the commits with uninteresting changes like typos, syntax fixes, etc… and keep the important and isolated steps in different commits.
|
Squash only the commits with uninteresting changes like typos, syntax fixes, etc… and keep the important and isolated steps in different commits.
|
||||||
|
|
||||||
Those PRs are merged and explicitly not fast-forwarded.
|
Those PRs are merged and explicitly not fast-forwarded.
|
||||||
|
|
||||||
Commit messages
|
Commit messages
|
||||||
|
|
||||||
Write commit messages according to adapted [Tim Pope’s guidelines](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html):
|
Write commit messages according to adapted [Tim Pope’s guidelines](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user