read me
This commit is contained in:
parent
9ee36b3694
commit
7d84f3764a
41
README.md
41
README.md
|
@ -6,6 +6,17 @@ This repository **only** contains exported configuration. It does not contain a
|
||||||
|
|
||||||
## change process
|
## change process
|
||||||
|
|
||||||
|
tea is here (i had to change docker file to just be based on node:latest)
|
||||||
|
|
||||||
|
https://gitea.com/gitea/tea/src/branch/main/docs/CLI.md
|
||||||
|
|
||||||
|
get tea for ubuntu
|
||||||
|
|
||||||
|
```sh
|
||||||
|
sudo apt-get update -y
|
||||||
|
sudo apt-get install -y tea
|
||||||
|
```
|
||||||
|
|
||||||
### FTBatch development pc on development branch
|
### FTBatch development pc on development branch
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
|
@ -48,3 +59,33 @@ git push origin --delete format-branch
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
create a pull request
|
||||||
|
|
||||||
|
```sh
|
||||||
|
git fetch --tags
|
||||||
|
gotea pr c --base=master --head=product-development --repo another-user/batch-example --title="WIP: this is a PR! it rocks!"
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
closing a pull request (not used)
|
||||||
|
```sh
|
||||||
|
gotea pr close --repo another-user/batch-example 11
|
||||||
|
```
|
||||||
|
|
||||||
|
build
|
||||||
|
|
||||||
|
```sh
|
||||||
|
|
||||||
|
git checkout master
|
||||||
|
git pull
|
||||||
|
git checkout deployed
|
||||||
|
git merge master
|
||||||
|
```
|
||||||
|
|
||||||
|
make xml files
|
||||||
|
|
||||||
|
```sh
|
||||||
|
git add -A
|
||||||
|
git commit
|
||||||
|
git push origin deployed
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in New Issue