Git

Androidプロジェクト向け.gitignore

# Vim swap files *.swp # Generated files bin/ gen/ libs/ obj/ # Eclipse project files .classpath .project # Mac .DS_Store

iOSプロジェクト向け.gitignore

# Vim swap files *.swp # Xcode *.xcodeproj/* !*.xcodeproj/project.pbxproj # Mac .DS_Store

Gitサーバの構築(CentOS編)

CentOS 6.0へのGitサーバ構築メモ Git, xinetd のインストール # yum install git git-daemon xinetd/etc/xinetd.d/git-daemon というファイルを新規作成。内容は以下の通り。 # default: off # description: The git server offers access to git repositor…

Gitサーバの構築(Ubuntu編)

Ubuntu Server 12.04へのGitサーバ構築メモServer側 Git関連パッケージのインストール $ sudo apt-get install git-core git-daemon-run Git公開用ディレクトリの設定。ここでは /var/repos とする $ sudo vi /etc/sv/git-daemon/run元ファイル #!/bin/sh ex…