Skip to content

Latest commit

 

History

History
54 lines (41 loc) · 1.23 KB

File metadata and controls

54 lines (41 loc) · 1.23 KB

making git repository

  1. git init
  2. git add .
  3. git commit -m "nth commit"
  4. git remote origin https://github.com/HirokiTachiyama/ProjectName.git
  5. git push -u origin master

pushing clone to remote(master branch)

  1. git add .
  2. git commmit -m "commit message"
  3. git push -u origin master

pushing clone to remote(other branch)

  1. git add .
  2. git commmit -m "commit message"
  3. git push -u origin current_branch_name

making branch

  1. git branch new_branch_name
  2. git checkout new_branch_name
  3. edit new branch code...
  4. git push -u origin new_branch_name
  5. Pull Request on Github
  6. Merge on Github

マークダウン記法 メモ

http://codechord.com/2012/01/readme-markdown/

段落

空行を開ける

改行

行末に2つスペース

強調

アスタリスクまたはアンダーバーで囲む

コード表示

バッククォーテーションで囲む

リスト

行頭にアスタリスク or 番号ピリオド()

  1. ほげ
  2. ふが

見出し

行頭の#の数でH1からH6を表す

引用

>を使う。途中で開業してもダブルクォーテーション内は改行されない。

水平線

3つ以上のハイフン、アスタリスク、アンダースコアを並べる。