git

ファイル属性の変更を git 上で管理する

git

Windows で作成したファイルを git push し、Linux や FreeBSD で git pull したファイルの属性は、0644 で記録されている。 これらのファイルに実行権限 (ファイル属性の変更) を付与して、git commit して git push した後に、Windows で git pull すると…

git のチュートリアルを試してみる

参考は git チュートリアル (バージョン 1.5.1 以降用) にする。 1.リポジトリを生成(初期化)する % mkdir -p projects/sample % cd projects/sample % git init git: 'init' is not a git-command The most commonly used git commands are: add Add files …