git首次配置远程仓库

git首次配置远程仓库

这篇内容面向首次使用git的初学者,将解释如何正常的使用github仓库

配置全局用户名和邮箱

其中user.name为你的github账户名,email为你的github邮箱

git config --global user.name "zacdeng"
git config --global user.email "xxx@gmail.com"

配置密钥

ssh-keygen -t rsa -C "zacdeng0720@gmail.com"
cat ~/.ssh/id_rsa.pub

image-20210424141420517

随后将得到的密钥配置到远程仓库的SSH Keys中

image-20210424141521813

其中Title最好设置为你的设备名,做好相应标识方便以后修改时认得出

建立仓库

初始化仓库

git init

放入暂存区

git add . (表示暂存所有文件)
git add 某个文件名称

如果出现:warning: LF will be replaced by CRLF in 'xxx' 错误时,原因是因为Windows和Linux提交时的换行符不一样,解决方法:

git config --global core.autocwenrlf false

提交文件

git commit 主要是将暂存区里的改动给提交到本地的版本库。每次使用git commit 命令我们都会在本地版本库生成一个40位的哈希值,这个哈希值也叫commit-id,commit-id在版本回退的时候是非常有用的,它相当于一个快照,可以在未来的任何时候通过与git reset的组合命令回到这里.

git commit -m '输入备注内容'
git push (-u) origin master

第一次配置时会要求输入github账户名和密码,正常输入即可

git配置记住用户名和密码

git config --global credential.helper store

git首次配置远程仓库
http://example.com/2021/04/24/git首次配置远程仓库/
Author
Zachary Deng
Posted on
April 24, 2021
Licensed under