gii生成代码

生成表model

./yii gii/model –tableName=dw_house_broker_sale –modelClass=HouseBrokerSale

生成controller和view

./yii gii/crud –controllerClass=“app\controllers\HousebrokerrentController” –modelClass=“app\models\HouseBrokerRent”

READ MORE

Git 如何保存用户名和密码

使用credential helper保存用户名和密码

Git提供了credential helper的功能,可以在本地保存用户名和密码,以便在每次Git命令执行时,不需要重新输入认证信息。

Git支持多种credential helper,包括cache、store、或者其他第三方提供的credential helper。其中,cache credential helper是Git默认的方式,可以在指定的时间段内缓存用户名和密码。

以下是如何使用credential helper保存用户名和密码的示例:

  1. 打开命令行终端,进入Git项目所在的目录。
  2. 使用以下命令设置credential helper为cache:
git config --global credential.helper cache  

这将把credential helper设置为cache,保存认证信息到内存中,默认的缓存时间为15分钟。

  1. 执行Git命令,如push或pull,第一次会要求输入用户名和密码。之后,在缓存时间内执行Git命令时,不需要输入认证信息。
git push origin master
  1. 如果希望修改缓存时间,可以使用以下命令设置新的时间(以2小时为例):
git config --global credential.helper 'cache --timeout=7200'

这将修改缓存时间为2小时(单位为秒)。

READ MORE

gitbash配置

修改 /etc/profile.d/git-prompt.sh

MSYS2_PS1

git config --global color.status auto
git config --global color.diff auto
git config --global color.branch auto
git config --global color.interactive auto

git config --global alias.co checkout
git config --global alias.br branch
git config --global alias.ci commit
git config --global alias.st status

READ MORE

gitlab runner

配置文件 root@37d560685493:/# cat /etc/gitlab-runner/config.toml

concurrent = 1

check_interval = 0

[session_server]

  session_timeout = 1800

[[runners]]

  name = "dev"

  url = "[http://gitlab.it.5i5j.com/](http://gitlab.it.5i5j.com/)"

  id = 2

  token = "pyyxoVJ7cz5az1Eq1xMn"

  token_obtained_at = 2022-11-16T05:42:55Z

  token_expires_at = 0001-01-01T00:00:00Z

  executor = "shell"

  [runners.custom_build_dir]

  [runners.cache]

    [runners.cache.s3]

    [runners.cache.gcs]

    [runners.cache.azure]

服务端环境变量 http://gitlab.it.5i5j.com/help/ci/variables/predefined_variables.md

配置文件 /etc/gitlab-runner/config.toml

READ MORE