既に作成済みのプロジェクトをgit管理したかったので、備忘録。
対象のディレクトリに移動後
git init
このとき、下記のエラーが出たため、
xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
コマンドラインツールをインストールした。
ターミナルを開いて下記をrun:
xcode-select --install
Xcodeは必要じゃないよ、ここでは130MBのコマンドラインツールのみのインストールだよ。
もしこれだけだとワークしなければ、下記を動かしてみてね。とのこと。
This will download and install the Command Line Tools package and fix the problem.
You do not need Xcode, you can install only the Command Line Tools here, it is about 130Mb.
If the above alone doesn't do it, then also run:
sudo xcode-select --reset
無事git initできました。
ファインダー上からも隠しファイルとして.gitが確認できます。
続きましてリモートリポジトリを設定。
・ SSH版(GitHub)
$ git remote add origin git@github.com:ユーザ名/リポジトリ名.git
・ SSH版(HTTPS)
$ git remote add origin https://github.com/ユーザ名/リポジトリ名.git
ディレクトリ内全てのファイルをgit管理するためには、git add
によるステージングが必要。
git add *
git commit -m 'first commit'
最後にリモートリポジトリへgit pushします。
git push origin master