当前位置:   article > 正文

安装github_安装github 文档

安装github 文档

安装github

  1. 下载官网
    git window 64
    git window 32
    git mac 64
    git mac 32
  2. 安装后右键点击 Git Bash Here

git.png
输入以下命令进行配置

$git config --global user.name "yourname"
$git config --global user.email "youremail@example.com"
$git config --global user.editor yourdeitor
  • 1
  • 2
  • 3

关于github ssh创建问题

  1. 查看当前计算机是否已经有ssh
$ cd ~/.ssh
  • 1
  1. 查看ssh文件夹下文件
$ ls -la
  • 1
  1. 如果有 id_rsa , id_rsa.pub,known_hosts 则删除
$ rm  id_rsa
$ rm id_rsa.pub
$ rm known_hosts
  • 1
  • 2
  • 3
  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 ycxadr@163.com
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
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  1. 添加到github,点击setting进入设置界面
    setting.png
    然后进入ssh设置
    ssh.png
    新建点击new ssh key

sshkey.png
将id_rsa.pub中内容复制进去
sshcontext.png

创建自己的repository

  • 在Github创建自己的仓库,点击 New repository

图片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 git@github.com********
提交到服务器,“master”是你的branchname
git push -u origin master

android 工程忽略文件如下:

/build
/app/.externalNativeBuild
/.gradle
/gradle
/.idea
/*.iml
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/寸_铁/article/detail/772283
推荐阅读
相关标签
  

闽ICP备14008679号