aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksey Filippov <alekseyf@google.com>2018-04-04 23:10:09 +0000
committerJussi Pakkanen <jpakkane@gmail.com>2018-04-07 12:51:36 +0300
commit52eb5b195eec53c3117a2058e6f63e7d4c88447a (patch)
tree95e798fc1465b7da39312eb1288598c5dcc2509f
parentaef1a81b3586aeb48988b60fbeaef5c19e112c45 (diff)
downloadmeson-52eb5b195eec53c3117a2058e6f63e7d4c88447a.zip
meson-52eb5b195eec53c3117a2058e6f63e7d4c88447a.tar.gz
meson-52eb5b195eec53c3117a2058e6f63e7d4c88447a.tar.bz2
Remove commit_zero recommendation from wrap documentation, use action commit [skip ci]
-rw-r--r--docs/markdown/Adding-new-projects-to-wrapdb.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/markdown/Adding-new-projects-to-wrapdb.md b/docs/markdown/Adding-new-projects-to-wrapdb.md
index 4420de5..58b27ba 100644
--- a/docs/markdown/Adding-new-projects-to-wrapdb.md
+++ b/docs/markdown/Adding-new-projects-to-wrapdb.md
@@ -37,11 +37,10 @@ Each project gets its own repo. It is initialized like this:
git init
git add readme.txt
- git commit -a -m 'Start of project foobar.'
- git tag commit_zero -a -m 'A tag that helps get revision ids for releases.'
+ git add LICENSE.build
+ git commit -a -m 'Create project foobar'
git remote add origin <repo url>
git push -u origin master
- git push --tags
Note that this is the *only* commit that will ever be made to master branch. All other commits are done to branches.