LoginSignup
0
0

More than 5 years have passed since last update.

GitHub事始め(Windows)

Last updated at Posted at 2017-05-01

Gitをインストール

Markdown: Git for Windows

Gitリポジトリ(?)を作成(対象のフォルダ内で)

.>git init

ファイルをローカルリポジトリに追加

git add xxxx.js

変更内容をローカルにコミットする(-mとは?)

git commit -m "XXXXXXXXX"

gitのステータスを確認

git status

リモートリポジトリの情報の追加→なおエラー(プロキシ等設定の必要がありそう)

git remote add origin https:github.com/User/XXXXXX.git

git remote add origin https://github.com/User/XXXXXX.git

というところで中断
間違えていたので

git remote rm origin

で消去してあげ直し
実際にGitに登録できたことを確認

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0