<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://shiyoka.com/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://shiyoka.com/feed.php">
        <title>ClownWiki - git</title>
        <description></description>
        <link>https://shiyoka.com/</link>
        <image rdf:resource="https://shiyoka.com/lib/exe/fetch.php?media=wiki:dokuwiki.svg" />
       <dc:date>2026-05-08T13:21:47+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://shiyoka.com/doku.php?id=git:1st_step&amp;rev=1739713984&amp;do=diff"/>
                <rdf:li rdf:resource="https://shiyoka.com/doku.php?id=git:flow&amp;rev=1739713984&amp;do=diff"/>
                <rdf:li rdf:resource="https://shiyoka.com/doku.php?id=git:gitbucket&amp;rev=1739713984&amp;do=diff"/>
                <rdf:li rdf:resource="https://shiyoka.com/doku.php?id=git:gitweb&amp;rev=1739713984&amp;do=diff"/>
                <rdf:li rdf:resource="https://shiyoka.com/doku.php?id=git:git_redmine&amp;rev=1739713984&amp;do=diff"/>
                <rdf:li rdf:resource="https://shiyoka.com/doku.php?id=git:install&amp;rev=1739713984&amp;do=diff"/>
                <rdf:li rdf:resource="https://shiyoka.com/doku.php?id=git:msygit&amp;rev=1739713984&amp;do=diff"/>
                <rdf:li rdf:resource="https://shiyoka.com/doku.php?id=git:sample001&amp;rev=1739713984&amp;do=diff"/>
                <rdf:li rdf:resource="https://shiyoka.com/doku.php?id=git:tips&amp;rev=1739713984&amp;do=diff"/>
                <rdf:li rdf:resource="https://shiyoka.com/doku.php?id=git:windows&amp;rev=1739713984&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://shiyoka.com/lib/exe/fetch.php?media=wiki:dokuwiki.svg">
        <title>ClownWiki</title>
        <link>https://shiyoka.com/</link>
        <url>https://shiyoka.com/lib/exe/fetch.php?media=wiki:dokuwiki.svg</url>
    </image>
    <item rdf:about="https://shiyoka.com/doku.php?id=git:1st_step&amp;rev=1739713984&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-16T13:53:04+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>1st_step</title>
        <link>https://shiyoka.com/doku.php?id=git:1st_step&amp;rev=1739713984&amp;do=diff</link>
        <description>1st_step

動作イメージ



基本的な使い方

ディレクトリ作成


[root@a3 tmp]# mkdir test.git
[root@a3 tmp]# cd test.git/


git 初期化


[root@a3 test.git]# git init
Initialized empty Git repository in /tmp/test.git/.git/


テストデータ作成</description>
    </item>
    <item rdf:about="https://shiyoka.com/doku.php?id=git:flow&amp;rev=1739713984&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-16T13:53:04+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>flow</title>
        <link>https://shiyoka.com/doku.php?id=git:flow&amp;rev=1739713984&amp;do=diff</link>
        <description>git の手順

サーバ側のgitから最新ソースを取得する（初回だけ）

　git clone ssh:root@192.168.80.111/var/lib/git/mlb.git
　&gt; root001

===== 最新の状態にする  =====
　git pull

===== 状態の確認  =====
　git status

===== 変更点を保存する  =====
　git add</description>
    </item>
    <item rdf:about="https://shiyoka.com/doku.php?id=git:gitbucket&amp;rev=1739713984&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-16T13:53:04+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>gitbucket</title>
        <link>https://shiyoka.com/doku.php?id=git:gitbucket&amp;rev=1739713984&amp;do=diff</link>
        <description>gitbucket

インストール

tomcat

GitBucket起動時にtomcatユーザのホームディレクトリをworkに設定するので、ディレクトリがないとエラーになります。
事前にユーザ作成を行っておくのが無難です。</description>
    </item>
    <item rdf:about="https://shiyoka.com/doku.php?id=git:gitweb&amp;rev=1739713984&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-16T13:53:04+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>gitweb</title>
        <link>https://shiyoka.com/doku.php?id=git:gitweb&amp;rev=1739713984&amp;do=diff</link>
        <description>gitweb

theme

GitHub風のデザイン
&lt;http://kogakure.github.com/gitweb-theme/&gt;

Install


# yum -y install gitweb
# cd /usr/share/gitweb
# view /etc/httpd/conf.d/git.conf



Alias /git /usr/share/gitweb

&lt;Directory /usr/share/gitweb&gt;
    Options +ExecCGI
    AddHandler cgi-script .cgi
    DirectoryIndex gitweb.cgi
&lt;/Directory&gt;</description>
    </item>
    <item rdf:about="https://shiyoka.com/doku.php?id=git:git_redmine&amp;rev=1739713984&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-16T13:53:04+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>git_redmine</title>
        <link>https://shiyoka.com/doku.php?id=git:git_redmine&amp;rev=1739713984&amp;do=diff</link>
        <description>git＋redmine


	● リポジトリ追加
	epel リポジトリ
	# rpm -ihv http://download.fedora.redhat.com/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm
	
	● インストール
	# yum -y install git
	
	● ユーザー設定
	# git config --global user.name clown
	# git config --global user.email clown@clown.jp
	
	● コンソールで色を付けるように設定
	# git config --global color.diff auto
	# git config --global color.status auto
	# git config --global color.branch auto
	
	● 設定確認
	# git config -l
	
	● Ver確認
	# git --version
	git version 1.7.3.5
	
	● ユーザー追加
	# use…</description>
    </item>
    <item rdf:about="https://shiyoka.com/doku.php?id=git:install&amp;rev=1739713984&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-16T13:53:04+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>install</title>
        <link>https://shiyoka.com/doku.php?id=git:install&amp;rev=1739713984&amp;do=diff</link>
        <description>Install

Git Install from yum repo

※Verが古いので、rpmbuildからのインストール推奨


# wget http://packages.sw.be/rpmforge-release/rpmforge-release-0.5.2-2.el5.rf.x86_64.rpm
# rpm -Uvh rpmforge-release-0.5.2-2.el5.rf.x86_64.rpm
# yum -y install git</description>
    </item>
    <item rdf:about="https://shiyoka.com/doku.php?id=git:msygit&amp;rev=1739713984&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-16T13:53:04+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>msygit</title>
        <link>https://shiyoka.com/doku.php?id=git:msygit&amp;rev=1739713984&amp;do=diff</link>
        <description>msysgit

Main

	*  Git-1.7.10-preview20120409.exe

&lt;http://code.google.com/p/msysgit/downloads/detail?name=Git-1.7.10-preview20120409.exe&amp;can=2&amp;q=full+installer+official+git&gt;

	*  msysgit v1.7.10 のインストールと日本語入力の暫定対応

&lt;http://d.hatena.ne.jp/sinsoku/20120419/1334798971&gt;

	*  UTF-8 対応の msysGit 1.7.10 リリース！ いよいよ Windows で git できるよ!!!

&lt;http://d.hatena.ne.jp/nitoyon/20120412/msysgit_utf8_2&gt;

	*  Git Source Control Provider</description>
    </item>
    <item rdf:about="https://shiyoka.com/doku.php?id=git:sample001&amp;rev=1739713984&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-16T13:53:04+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>sample001</title>
        <link>https://shiyoka.com/doku.php?id=git:sample001&amp;rev=1739713984&amp;do=diff</link>
        <description>シナリオに沿ったコマンドサンプル

サンプルシナリオ

共有サーバで空のリポジトリ作成


[root@a4 tmp]# mkdir share.git
[root@a4 tmp]# cd share.git/


	*  init：初期化
	*  bare：作業ファイルがない、管理情報だけのリポジトリ。共有サーバのリポジトリは一般的にこれ。</description>
    </item>
    <item rdf:about="https://shiyoka.com/doku.php?id=git:tips&amp;rev=1739713984&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-16T13:53:04+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>tips</title>
        <link>https://shiyoka.com/doku.php?id=git:tips&amp;rev=1739713984&amp;do=diff</link>
        <description>Tips

git config

	*  /etc/gitconfig 
Git でこのファイルの読み書きをするには、--system オプションを指定します。

	*  ~/.gitconfig 
ホーム直下 
Git でこのファイルの読み書きをするには、--global オプションを指定します。</description>
    </item>
    <item rdf:about="https://shiyoka.com/doku.php?id=git:windows&amp;rev=1739713984&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-16T13:53:04+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>windows</title>
        <link>https://shiyoka.com/doku.php?id=git:windows&amp;rev=1739713984&amp;do=diff</link>
        <description>windowsでgit

Windows環境での利用

	*  TortoiseGit-1.8.0.0-32bit
  * TortoiseGit-LanguagePack-1.8.0.0-32bit-ja
公式：&lt;http://code.google.com/p/tortoisegit/&gt;
ＤＬ：&lt;http://code.google.com/p/tortoisegit/wiki/Download&gt;

	*  msysGit-fullinstall-1.8.1.2-preview20130201
Home：&lt;http://code.google.com/p/msysgit/&gt;
ＤＬ：&lt;http://code.google.com/p/msysgit/downloads/list&gt;

TortoiseGitの設定

	*  初回起動時には、MSysGitの設定が必要</description>
    </item>
</rdf:RDF>
