ini 用于管理Atlassian Stash应用程序的Ubuntu Upstart脚本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ini 用于管理Atlassian Stash应用程序的Ubuntu Upstart脚本相关的知识,希望对你有一定的参考价值。

# stash

description "Atlassian Stash"

start on runlevel [2345]
stop on runlevel [!2345]

respawn

kill timeout 30

env RUN_AS_USER=stash
env BASEDIR=/opt/atlassian-stash
env STASH_HOME="/var/lib/atlassian-stash"

script
	LOGFILE=/var/log/atlassian-stash/stash.`date +%Y-%m-%d`.log
	exec su - $RUN_AS_USER -c "$BASEDIR/bin/start-stash.sh -fg" >> $LOGFILE 2>&1
end script

Git stash,git reset --soft 的相关应用

前言 使用 Git 作为代码版本管理,已经是开发工程师必备的技能。可很多人还是只会最基本的保存、拉取、推送等简单命令。 本文分享我在开发工作中用到过的实用命令。的确是能够大大提高工作效率,还能解决不少疑难场景。 stash 描述 官方解释:当您想记录工作目录和索引的当前状态,但又想返回一个干净的工作

以上是关于ini 用于管理Atlassian Stash应用程序的Ubuntu Upstart脚本的主要内容,如果未能解决你的问题,请参考以下文章

Atlassian Stash - 权限被拒绝(公钥)

在 Atlassian Bamboo 中,我如何将我的脚本指向 Stash Repo 中的文件?

atlassian账号怎么注册?

列出分支的 git/stash 拉取请求

Atlassian系列之crowd对接jira,confluence,fisheye单点登录

Git stash,git reset --soft 的相关应用