github最初の使い方
まずは登録情報を確定させる。
git config --global user.name "ユーザー名"
git config --global user.email "メールアドレス"
鍵を登録
ssh-keygen -t rsa -C "メールアドレス"
そのあと,yesを何回か入力。
xxxxx.pub
そのあと,上記のファイルにcat xxxxx.pub 。
を入力。出力された内容を以下に登録する
https://github.com/settings/keys
そのあと、対象のディレクトリへ「cd」で移動
リポジトリ(プロジェクト)を登録後に以下のコマンドで登録
git init
git add .
git commit -m 'Initial Commit'
git remote add origin [email protected]:ユーザー/プロジェクト
git push -u origin master
fatal: remote origin already exists.
→上のように出力されたら下記のコマンドで削除します
git remote rm origin
もしも、既に登録されているリポジトリであれば、下記の内容だけで登録できます
git init
git add .
git commit -m 'Initial Commit'
git push -u origin master
Author And Source
この問題について(github最初の使い方), 我々は、より多くの情報をここで見つけました https://qiita.com/yuuki-furue/items/c859a9b7d17972144d41著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .