uuntu 16.04の下でgithubのインストールと使用

7072 ワード

一.gitが取り付けられているか確認する
sulei@sulei:~$ git version
git version 2.7.4
二.インストールされていない場合は、次のコマンドを使用します.
sudo apt-get install git git-core
三:SSH認証を行う
sulei@sulei:~$ ssh -T git@github.com
Warning: Permanently added the RSA host key for IP address '192.30.255.113' to the list of known hosts.
Permission denied (publickey).
認証失敗四.設定情報
$ git config --global user.name "Your Name"
$ git config --global user.email "[email protected]"
sulei@sulei:~/.ssh$ git config --list
user.name=shursulei
use.email=1368455669@qq.com
五.設定が完了したら、検証用の公開鍵を作成する必要があります.gitはsshでリソースライブラリにアクセスするため、ローカルで検証用のファイルを作成する必要があります.コマンドを使用します[email protected]'-t rsa(注意sshと-keygenの間にスペースがない)は、ユーザディレクトリ~/.ssh/の下で対応する鍵ファイルを作成します.公開鍵を作成したら、アップロードが必要です.コマンドcd~/.sshを使って~/.sshフォルダに入り、gedit id_を入力します.rsa.pubがid_を開くRSa.pubファイルは、その中のすべての内容をコピーします.
sulei@sulei:~$ ssh-keygen -C "[email protected]" -t rsa
Generating public/private rsa key pair.
Enter file in which to save the key (/home/sulei/.ssh/id_rsa): 
Enter passphrase (empty for no passphrase): 
Enter same passphrase again: 
Your identification has been saved in /home/sulei/.ssh/id_rsa.
Your public key has been saved in /home/sulei/.ssh/id_rsa.pub.
The key fingerprint is:
SHA256:Xy/z8xHEY4xiNynbfM67SpjWKot/gP2AzpIxAyR9TFI 1368455669@qq.com
The key's randomart image is:
+---[RSA 2048]----+
|  ..+E           |
| . o.o        =  |
|  o .      + = * |
|   .      . B + .|
|    .   S  ..o o |
|     + o = .+.+ .|
|      B   =+oo.+ |
|     o o...oo+. o|
|      ...o+. .o=o|
+----[SHA256]-----+
登録したメールボックスにコピーした内容を記入してください.六.再度リンクしてください.
sulei@sulei:~/.ssh$ ssh -T git@github.com
Hi shursulei! You've successfully authenticated, but GitHub does not provide shell access.
七.バージョンライブラリを作成し、初期化する
sulei@sulei:~$ mkdir learngit
sulei@sulei:~$ cd learngit/
sulei@sulei:~/learngit$ pwd
/home/sulei/learngit
sulei@sulei:~/learngit$ git init
      Git     /home/sulei/learngit/.git/
本題に戻ります.readme.txtファイルを作成します.内容は以下の通りです.
sulei@sulei:~/learngit$ gedit readme.txt
 
Git is a version control system.
Git is free software.
提出します.しかし、エラーが発生しました
sulei@sulei:~/learngit$ git add readme.txt 
sulei@sulei:~/learngit$ git commit -m "wrote a readme file"

*** Please tell me who you are.

Run

  git config --global user.email "[email protected]"
  git config --global user.name "Your Name"

to set your account's default identity.
Omit --global to set the identity only in this repository.

fatal: unable to auto-detect email address (got 'sulei@sulei.(none)')
sulei@sulei:~/learngit$ git config --global user.name "shursulei"
sulei@sulei:~/learngit$ git config --global user.email "[email protected]"
     :
sulei@sulei:~/learngit$ git commit -m "wrote a readme file"
[master (   ) cf8d9c1] wrote a readme file
 1 file changed, 2 insertions(+)
 create mode 100644 readme.txt
参考場所:
http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000/0013743858312764dca7ad6d0754f76aa562e3789478044000