<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE feed [
      <!ENTITY lt "&#38;#60;">
      <!ENTITY gt "&#62;">
      <!ENTITY amp "&#38;#38;">
      <!ENTITY apos "&#39;">
      <!ENTITY quot "&#34;">
      <!ENTITY nbsp "&#160;">
      <!ENTITY copy "&#169;">
]>
<feed xmlns="http://www.w3.org/2005/Atom">
    <title type="text">開発ブログ</title>
    <subtitle type="text">MASA Lab softlab-Software Architecture Laboratory</subtitle>
    <updated>2026-05-21T13:32:52+09:00</updated>
    <id>http://softlab.masa-lab.net/modules/d3blog/index.php</id>
    <link rel="alternate" type="text/xhtml" hreflang="ja" href="http://softlab.masa-lab.net/" />
    <link rel="self" type="application/atom+xml" href="http://softlab.masa-lab.net/modules/d3blog/index.php?page=atom" />
    <rights>Copyright &copy; 2008-2019 by MASA-Lab</rights>
    <generator uri="http://softlab.masa-lab.net/">D3BLOG - XOOPS BLOG MODULE</generator>
    <entry>
        <title>Mac XCode で NAS に git remote</title>
        <link rel="alternate" type="text/xhtml" href="http://softlab.masa-lab.net/modules/d3blog/details.php?bid=245" />
        <id>http://softlab.masa-lab.net/modules/d3blog/details.php?bid=245</id>
        <published>2017-02-03T21:30:00+09:00</published>
        <updated>2019-04-03T10:53:02+09:00</updated>
        <category term="MacOS" label="MacOS" />
        <author>
            <name>masa</name>
        </author>
        <summary type="html" xml:base="http://softlab.masa-lab.net/" xml:lang="ja">■NAS を mac にマウント今回は LinkStation なので smb でFinder から「移動－サーバへ接続」サーバアドレス ＝ smb://fileserver1/Git1接続名前はusername@domain_name.localbash で
cd /Volumes/Git1
mkdir project_name
...</summary>
       <content type="html" xml:lang="ja" xml:base="http://softlab.masa-lab.net/">
<![CDATA[<div>■NAS を mac にマウント<br /><br />今回は LinkStation なので smb で<br />Finder から「移動－サーバへ接続」<br />サーバアドレス ＝ <a href="smb://fileserver1/Git1" rel="external">smb://fileserver1/Git1</a><br />接続<br />名前は<br /><a href="mailto:username@domain_name.local">username@domain_name.local</a><br /><br />bash で<br /><pre class="blogCode"><code>
cd /Volumes/Git1
mkdir project_name
cd project_name
git init project.git --bare --shared
</code></pre><br /><br />XCode から<br />Soure Control - master -> configure<br />Remotes タブで + で追加 Add Remote...<br />name: origin<br />address: /Volumes/Git1/project_name/project.git<br />とする<br /><a href="smb://fileserver1/Git1/project_name/project.git" rel="external">smb://fileserver1/Git1/project_name/project.git</a><br />などとしても push できないので注意<br />(Unable to find remote helper for 'smb')<br /><br />もしくは<br />bash で ローカルフォルダに移動し<br /><pre class="blogCode"><code>
git remote add origin /Volumes/Git1/project_name/project.git
</code></pre><br />とする<br /><br /><br />別のmacでclone する場合<br />bash でローカルフォルダに移動し<br /><pre class="blogCode"><code>
git clone /Volumes/Git1/project_name/project.git
</code></pre><br />とする</div>]]>
       </content>
    </entry>
    <entry>
        <title>MacOS X のソースをダウンロードする</title>
        <link rel="alternate" type="text/xhtml" href="http://softlab.masa-lab.net/modules/d3blog/details.php?bid=7" />
        <id>http://softlab.masa-lab.net/modules/d3blog/details.php?bid=7</id>
        <published>2013-11-16T10:10:00+09:00</published>
        <updated>2013-11-24T13:21:43+09:00</updated>
        <category term="MacOS" label="MacOS" />
        <author>
            <name>masa</name>
        </author>
        <summary type="html" xml:base="http://softlab.masa-lab.net/" xml:lang="ja">
MacOS X のドライバ類はオープンソースになっているので、www.opensource.apple.com/source から見ることが出来ますが、ブラウザ上でソースを見ているのは大変なので、X-Code に読み込んで見てみ...</summary>
       <content type="html" xml:lang="ja" xml:base="http://softlab.masa-lab.net/">
<![CDATA[<div><p>
MacOS X のドライバ類はオープンソースになっているので、<a href="https://www.opensource.apple.com/source/" target="_blank"><a href="http://www.opensource.apple.com/source" rel="external">www.opensource.apple.com/source</a></a> から見ることが出来ますが、ブラウザ上でソースを見ているのは大変なので、X-Code に読み込んで見てみたいこともあります。<br />
一括でダウンロードするためには、<a href="http://opensource.apple.com/tarballs/" target="_blank">opensource.apple.com/tarballs</a> に tar アーカイブがあるので、それを持ってきます。</br>
</p></div>]]>
       </content>
    </entry>
</feed>