GitHubの公式サイトへ行き、 各項目に入力後、 Sign up for free をクリックします。
gitはUnixやinuxを扱う人たちがコマンドラインでガツガツ使っているイメージが強いです。
でもでも、Windowsだけでもコマンドを知らなくても、GitHubを十分使えます!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
OPEN SHELLを選択 | |
git statusを入力、エンター | |
both modified: ファイル名 | |
と、コンフリクトを起こしているファイル名が表示されるので、 | |
エディタ(メモ帳は改行が反映されてないので出来ればそれ以外、Sublime、Terapadなど)で開く | |
<<<<<<<<<<<<と |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
title | |
"text","" | |
["data","event"] | |
"events" | |
[] | |
events |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
"use strict"; | |
WinJS.UI.Pages.define("/pages/home/home.html", { | |
// この関数は、ユーザーがこのページに移動するたびに呼び出されます。 | |
// ページ要素にアプリケーションのデータを設定します。 | |
ready: function (element, options) { | |
// TODO: ここでページを初期化します。 | |
element.querySelector("#loadImage").addEventListener("click", loadImage) |