7
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[備忘録]GitとGitHubの連携

Last updated at Posted at 2016-03-29

#GitとGitHubの連携

Google App Engineのプロジェクトにいろいろな環境からアクセスするので、プロジェクトごとGitHubに上げておくことにしています。
自宅のMacが壊れたので、代替機から作業した際のメモです。

  1. stm3さんの投稿、[GitHub] 公開鍵登録の際に、Permission denied (publickey). が出続ける場合の対応 (vagrantからsshする場合の注意も)
    を参考にさせて頂き、GitHubに公開鍵登録。
  2. GitHubで”+NewRepository"から新規にGAEプロジェクトをアップロードするためのリポジトリを作成。
  3. コマンドラインで下記を実行。
>git config --global user.name "<アカウント名>"
>git config --global user.email "<メールアドレス>"
>git init
>git add *
>git commit -m "first commit"
>git remote add origin git@github.com:<アカウント名>/<プロジェクト名>.git
>git push  -u origin master

明日はendpointで簡単に動くものを作ってみます。

7
8
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
7
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?