<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Redmine on ポンコツ地方エンジニアの技術ブログ</title><link>https://blog-0847c6.gitlab.io/tags/redmine/</link><description>Recent content in Redmine on ポンコツ地方エンジニアの技術ブログ</description><generator>Hugo -- gohugo.io</generator><language>ja-jp</language><lastBuildDate>Tue, 17 May 2022 00:00:00 +0900</lastBuildDate><atom:link href="https://blog-0847c6.gitlab.io/tags/redmine/index.xml" rel="self" type="application/rss+xml"/><item><title>Redmine のチケットを一括で他のプロジェクトに移動させる</title><link>https://blog-0847c6.gitlab.io/posts/2022/05/17/redmine/</link><pubDate>Tue, 17 May 2022 00:00:00 +0900</pubDate><guid>https://blog-0847c6.gitlab.io/posts/2022/05/17/redmine/</guid><description>&lt;p&gt;ちょっとだけ迷ったのでメモです。&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;チケットの一覧で、チケットを複数選択&lt;/li&gt;
&lt;li&gt;右クリックして「編集」を選択&lt;/li&gt;
&lt;li&gt;プロジェクトを変更する&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="参考-url"&gt;&lt;a href="#%e5%8f%82%e8%80%83-url" class="header-anchor"&gt;&lt;/a&gt;参考 URL
&lt;/h2&gt;&lt;ul&gt;
&lt;li&gt;&lt;a class="link" href="https://linkerdesign.github.io/journal/2013/01/redmine.html" target="_blank" rel="noopener"
 &gt;https://linkerdesign.github.io/journal/2013/01/redmine.html&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</description></item><item><title>Redmine に Git のリポジトリを追加したら internal error が表示される</title><link>https://blog-0847c6.gitlab.io/posts/2022/05/13/redmine/</link><pubDate>Fri, 13 May 2022 00:00:00 +0900</pubDate><guid>https://blog-0847c6.gitlab.io/posts/2022/05/13/redmine/</guid><description>&lt;p&gt;私の場合ですが、タグ名に日本語を使っていたのが原因のようでした。&lt;/p&gt;
&lt;p&gt;環境は以下です。&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Redmine 3.4.2&lt;/li&gt;
&lt;li&gt;Git 1.8.3.1&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;ちょっと古いバージョンなので最新バージョンではわかりませんが、この環境下では、ブランチやタグの名前に日本語を使っていると internal error となるようです。&lt;br&gt;
Redmine のログを見ていてタグの表示でエラーになっているっぽかったので気が付きました。&lt;/p&gt;
&lt;h2 id="参考-url"&gt;&lt;a href="#%e5%8f%82%e8%80%83-url" class="header-anchor"&gt;&lt;/a&gt;参考 URL
&lt;/h2&gt;&lt;ul&gt;
&lt;li&gt;&lt;a class="link" href="https://plugins.co.jp/2015/05/git%E3%81%AE%E3%83%96%E3%83%A9%E3%83%B3%E3%83%81%E3%81%AB%E6%97%A5%E6%9C%AC%E8%AA%9E%E5%90%8D%E3%82%92%E3%81%A4%E3%81%91%E3%82%8B%E3%81%A8redmine%E3%81%AE%E3%83%AA%E3%83%9D%E3%82%B8%E3%83%88%E3%83%AA/" target="_blank" rel="noopener"
 &gt;https://plugins.co.jp/2015/05/git%E3%81%AE%E3%83%96%E3%83%A9%E3%83%B3%E3%83%81%E3%81%AB%E6%97%A5%E6%9C%AC%E8%AA%9E%E5%90%8D%E3%82%92%E3%81%A4%E3%81%91%E3%82%8B%E3%81%A8redmine%E3%81%AE%E3%83%AA%E3%83%9D%E3%82%B8%E3%83%88%E3%83%AA/&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</description></item><item><title>Redmine に Git のリポジトリを追加したら 404 エラーが表示される</title><link>https://blog-0847c6.gitlab.io/posts/2022/05/12/redmine/</link><pubDate>Thu, 12 May 2022 00:00:00 +0900</pubDate><guid>https://blog-0847c6.gitlab.io/posts/2022/05/12/redmine/</guid><description>&lt;p&gt;まずはファイルパスが正しいかを疑うべきですが、それが正しい場合はアクセス権が原因の可能性があります。&lt;/p&gt;
&lt;p&gt;例えば、私の場合、&lt;code&gt;/home/username/xxxx.git&lt;/code&gt; という場所にベアリポジトリを作成していたのですが、&lt;code&gt;xxxx.git&lt;/code&gt; のアクセス権しか変更していませんでした。&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-sh" data-lang="sh"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;$ sudo chmod o+rx xxxx.git
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;しかし、その一つ上の &lt;code&gt;/home/username&lt;/code&gt; にアクセス権が設定されていなかったため、Redmine からは見ることができなかったようです。&lt;br&gt;
以下のように設定変更すれば解決しました。&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-sh" data-lang="sh"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;$ sudo chmod o+rx /home/username
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id="参考-url"&gt;&lt;a href="#%e5%8f%82%e8%80%83-url" class="header-anchor"&gt;&lt;/a&gt;参考 URL
&lt;/h2&gt;&lt;ul&gt;
&lt;li&gt;&lt;a class="link" href="https://www.pistolfly.com/weblog/2010/11/redminegit.html" target="_blank" rel="noopener"
 &gt;https://www.pistolfly.com/weblog/2010/11/redminegit.html&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</description></item></channel></rss>