GitHub 创建步骤及问题

安装github

  1. 下载官网
    git window 64
    git window 32
    git mac 64
    git mac 32
  2. 安装后右键点击 Git Bash Here
GitHub 创建步骤及问题_第1张图片
git.png

输入以下命令进行配置

$git config --global user.name "yourname"
$git config --global user.email "[email protected]"
$git config --global user.editor yourdeitor

关于github ssh创建问题

  1. 查看当前计算机是否已经有ssh
$ cd ~/.ssh
  1. 查看ssh文件夹下文件
$ ls -la
  1. 如果有 id_rsa , id_rsa.pub,known_hosts 则删除
$ rm  id_rsa
$ rm id_rsa.pub
$ rm known_hosts
  1. 生成自己的ssh-key
$ ssh-keygen -t rsa -C "****@163.com"
Generating public/private rsa key pair.
Enter file in which to save the key (/c/Users/ycx/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /c/Users/ycx/.ssh/id_rsa.
Your public key has been saved in /c/Users/ycx/.ssh/id_rsa.pub.
The key fingerprint is:
SHA256:vOdSmPCEWy5scBMIFRQHUEQXFDQ//B/iXxIW3Cr5fqM [email protected]
The key's randomart image is:
+---[RSA 2048]----+
|  oOXBOo         |
|    .o.+   . .   |
|       o+   o .  |
![ssh.png](http://upload-images.jianshu.io/upload_images/8030893-5d01460e0d299bb6.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

|    . =.oo . o   |
|     + OSo= =    |
|      = =o.* o   |
|     . ...o + .  |
|        .o o oo  |
|         .. Eo . |
+----[SHA256]-----+
  1. 添加到github,点击setting进入设置界面
    GitHub 创建步骤及问题_第2张图片
    setting.png

    然后进入ssh设置
    GitHub 创建步骤及问题_第3张图片
    ssh.png

    新建点击new ssh key
GitHub 创建步骤及问题_第4张图片
sshkey.png

将id_rsa.pub中内容复制进去


GitHub 创建步骤及问题_第5张图片
sshcontext.png

创建自己的repository

  • 在Github创建自己的仓库,点击 New repository
GitHub 创建步骤及问题_第6张图片
图片1.png
  • 创建成功后,在自己本地目录打开 git bash下输入以下命令

创建git 仓库
git init
创建自己的忽略文件
touch .gitignore/
创建README.md
echo "ssd" >>README.md
添加所有文件到索引
git add -A
提交changes
git commit -m "first"
添加服务器 git@.....是你的ssh路径
git remote add origin [email protected]********
提交到服务器,“master”是你的branchname
git push -u origin master

android 工程忽略文件如下:

/build
/app/.externalNativeBuild
/.gradle
/gradle
/.idea
/*.iml

你可能感兴趣的:(GitHub 创建步骤及问题)