changeset 0:d75c1474f10f

Initial files registered
author HIROSE Yuuji <yuuji@gentei.org>
date Sat, 08 Dec 2012 13:51:06 +0900
parents
children f380220d96c9
files HowtoEdit.txt index.html skip.css
diffstat 3 files changed, 48 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/HowtoEdit.txt	Sat Dec 08 13:51:06 2012 +0900
@@ -0,0 +1,32 @@
+#
+# SKIP web 編集作業の流れ
+#
+
+0. リポジトリのクローンを作る
+
+1. クローンした作業ディレクトリに移動(cd)
+2. リポジトリからの更新を手元に引き込む(hg pull -uv)
+3. 編集する
+4. コミットする
+5. 3と4を繰り返す
+6. 更新をリポジトリに送信する(hg push)
+
+
+各手順
+
+0. リポジトリのクローンを作る			最初に一回だけ
+   % hg clone ssh://skip/web
+
+1. クローンした作業ディレクトリに移動(cd)	その日の作業開始時
+2. リポジトリからの更新を手元に引き込む
+   % cd 「クローンしたwebディレクトリ」
+   % hg pull -uv				これを忘れるとハマる
+
+3. 編集する
+4. コミットする
+5. 3と4を繰り返す
+   → emacsでファイルを保存したら C-x v v で更新メモを入れて C-c C-c
+
+6. 更新をリポジトリに送信する(hg push)
+   更新がまとまったらpushする
+   % hg push					これも忘れないように
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/index.html	Sat Dec 08 13:51:06 2012 +0900
@@ -0,0 +1,11 @@
+<html lang="ja">
+<head>
+<title>SKIP - Shonai Koeki Information Project</title>
+<link rel="stylesheet" type="text/css" href="skip.css">
+</head>
+
+<body>
+<p>Edit me!</p>
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/skip.css	Sat Dec 08 13:51:06 2012 +0900
@@ -0,0 +1,5 @@
+/*
+ * The default style for SKIP web
+ * Copyright 2012 by Shonai Koeki Information Project and koeki-u.ac.jp.
+ */
+body {background: azure;}

yatex.org