通过命令向GitHub 提交Android Studio 项目
首先需要在GitHub
创建一个仓库,也就是new repository
。
然后再进入到本地需要提交的项目根目录,打开命令行,输入以下内容
代码语言:javascript复制git init//初始化本地仓库
git add .//添加本地所有的文件到暂存区中
git commit -m "first commit"//向本地仓库提交所有add的文件
git remote add origin git@github.com:ztz12/Kotlin.git //将远程的分支拉取到本地
git push -u origin master //提交本地仓库的修改到远程master分支。由于是第一次提交,远端还没有创建任何分支,所以使用-u命令,与远端建立联系。
PS: 如果第一次提交报
failed to push some refs to......
的话 需要命令行输入git pull origin master
。 我用HTTPS
地址测试是不会成功的,改用SSH
地址git remote add origin
[email protected]
:ztz12/Kotlin.git
git push 每次都需要输入用户名和密码
步骤1:
如果你的版本库已经用https
方式创建好了,那么就需要先删除原来的提交方式。在终端执行以下指令:
git remote rm origin
git remote add origin git@github.com:(用户名)/版本库名
例子:
https: https://github.com/ztz12/Kotlin.git
ssh:
[email protected]
:ztz12/Kotlin.git
如果你在创建版本库时选择不创建README.md
,系统会提示你创建:
https:
…or create a new repository on the command line
echo # GitTest >> README.md
https
提交方式
git init
git add .
git commit -m "first commit"
git remote add origin https://github.com/ztz12/Kotlin.git
git push -u origin master
ssh
提交方式
ssh:
…or create a new repository on the command line
echo # GitTest >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin git@github.com:ztz12/Kotlin.git
git push -u origin master
步骤2:
然后这个时候你使用下面指令提交代码:
代码语言:javascript复制git push -u origin master
系统会提示:
代码语言:javascript复制The authenticity of host 'github.com (192.30.252.131)' can't be established.
RSA key fingerprint is SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'github.com,192.30.252.131' (RSA) to the list of known h osts.
Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
说明你权限不够。所以这时你需要在本地创建自己的RSA的key。如下:
ssh-keygen -t rsa -C "用户名"
然后系统会问你保存路径等东西,我直接enter跳过了。
Generating public/private rsa key pair.
Enter file in which to save the key (/c/Users/AlexYi/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
然后系统会生成一些东西:
代码语言:javascript复制Your identification has been saved in /Users/yif/.ssh/id_rsa.
Your public key has been saved in /Users/yif/.ssh/id_rsa.pub.
The key fingerprint is:
SHA256:rxfK05d7oZWpDvQ5dRQM0Na7...
The key's randomart image is:
---[RSA 2048]----
| .o. . |
| o o.|
| . o|
| o |
...
最主要的是告诉你,你的可以在:
代码语言:javascript复制Your public key has been saved in /Users/yif/.ssh/id_rsa.pub
找到这个文件,然后用记事本打开,就可以看到自己的key:
ssh-rsa AAAAB3NzaC1yc2EAAAADA...
步骤3
然后将生成的rsa 的key添加到版本库中即可,方法: 打开自己的版本库,点击右边的 Settings 进入配置页。 然后点击左边导航栏的: 选择SSH and GPG keys 然后点击: New SSH key ,将自己的内容输入进去就可以了。 最后点击Add SSH key就可以了。
最后继续提交更改的代码,使用:
代码语言:javascript复制git push -u origin master
可以提交成功。
补充
如果要使用git push
简短提交代码:
需要配置 :
git config --global push.default simple
//提交当前本地你所在的分支
或者:
git config --global push.default matching
//提交本地所有的分支