github/自作ライブラリの公開
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&tag(github/自作ライブラリの公開);
*目次 [#s8875f58]
#contents
*関連ページ [#t0cb0cbb]
*参考情報 [#u7578d05]
-[[はじめての Github で自作のライブラリを公開するためのリ...
-[[2013-05-05 - 未来のいつか/hyoshiokの日記:http://d.hate...
*手順 [#se5a8ede]
**リポジトリの作成とpush [#gde10319]
-githubでリポジトリを作成。
-ローカルでリポジトリを作成しpushする。
#pre{{
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin git@github.com:src256/test.git
git push -u origin master
}}
**他のマシンでclone [#p1bc0fb3]
-他のマシンでcloneする場合
#pre{{
git clone git@github.com:src256/test.git
}}
*Tips [#taec18c6]
**~/.ssh/configで便利に [#c0329319]
-次のような設定を~/.ssh/configに追加しておく。
#pre{{
Host githubsrc256
User git
Hostname github.com
IdentityFile ~/.ssh/id_rsa.src256@github
}}
-cloneが便利に
#pre{{
git clone githubsrc256:src256/test.git
}}
終了行:
&tag(github/自作ライブラリの公開);
*目次 [#s8875f58]
#contents
*関連ページ [#t0cb0cbb]
*参考情報 [#u7578d05]
-[[はじめての Github で自作のライブラリを公開するためのリ...
-[[2013-05-05 - 未来のいつか/hyoshiokの日記:http://d.hate...
*手順 [#se5a8ede]
**リポジトリの作成とpush [#gde10319]
-githubでリポジトリを作成。
-ローカルでリポジトリを作成しpushする。
#pre{{
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin git@github.com:src256/test.git
git push -u origin master
}}
**他のマシンでclone [#p1bc0fb3]
-他のマシンでcloneする場合
#pre{{
git clone git@github.com:src256/test.git
}}
*Tips [#taec18c6]
**~/.ssh/configで便利に [#c0329319]
-次のような設定を~/.ssh/configに追加しておく。
#pre{{
Host githubsrc256
User git
Hostname github.com
IdentityFile ~/.ssh/id_rsa.src256@github
}}
-cloneが便利に
#pre{{
git clone githubsrc256:src256/test.git
}}
ページ名: