0
1

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 3 years have passed since last update.

Github使い方

Posted at

#Githubの使い方備忘録

自分がgithubを使うにあたり、メモ書きとして残します。
sshでの通信を想定しています。
##はじめて連携する時

ssh-keygen

ここで設定したパスワードを後々毎回連携する際に使用することになるので忘れずに。

cat  ~/.ssh/id_rsa.pub

鍵情報をコンソールに表示。

github→右上のアイコンからSettings→SSH and GPG keys→New SSH kews
のところにさっき表示した鍵情報を貼り付ける。

以上で連携は終わり。

##リモートリポジトリ→ローカルリポジトリのやり方

リモートリポジトリの、Clone or Downloadで表示されるやつ(ただしUse SSH)をコピー。

ローカルリポジトリを作りたいディレクトリに移動して、

git clone (さっきコピーしたやつ)

ディレクトリ内に生成しているはず。

###pull
これは使いたいブランチに依存する、

git pull origin master

##ローカル→リモート

とりあえずディレクトリ作って入る。ここにリポジトリを作るには、

git init

このディレクトリ内にリポジトリが生成される。
これはGUIのファインダー内にはひょうじされないから注意!!!

addするには、

git add addしたいファイル名

ここでそのディレクトリすべてaddしたいってなったら、

git add .

commitは、

git commit -m "なんらかのメッセージ"

コミットには何らかのコメントが必須

pushは、

git remote add origin git@github.com:自分のGitHubアカウント名/作ったプロジェクト名
git push -u origin master

##ブランチ!!!

めんどいので詳細は省きます。

git branch
git branch gh-pages
git checkout gh-pages
touch index.html


git checkout master
git merge gh-pages

以上が基本的な使い方。。のはず

0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?