Linux-Centos下的git配置使用

时间:2022-01-23 10:00:55
转载前注明出处,欢迎转载分享第一步:创建一个本地仓库
1 mkdir my_repository  //创建仓库

进入该目录:
1
git init  //git的初始化 生成.git隐藏文件

第二步:配置.git文件(以我自己的git为例)
1
2
git config --global user.name 'chensguo8099'
git config --global user.email 
'chensguo8099@gmail.com'


第三步:在远程创建仓库(不懂的伙伴戳这里:在github上创建仓库


第四步:将远程仓库克隆(第三步github上会生成webURL,以我自己的git为例)
1
git clone https://github.com/chensguo8099/c_study.git


第五步:对仓库进行修改(比如上传文件,删除文件)
1)本地上传步骤:
1
2
3
git add file_name
git status //查看状态
git commit '我的本次上传留言'

本地上传完毕后向远程仓库传输
1
git push //本地上传完毕后向远程仓库传输

2)本地删除步骤:
1
2
3
4
rm fr file_name
git status //显示删除的文件
git rm deleted_file_name
git commit 
'我的本次删除留言'

最后上传至远程仓库
1
git push //上传至远程仓库

注意:git push可能会出现以下错误:error: The requested URL returned error: 403Forbidden while accessinghttps://github.com/chensguo8099/future.git/info/refs
解决方案:
1
vim .git config

修改[remote "origin"]      url =https://github.com/chensguo8099/example.git为:[remote "origin"]      url =https://chensguo8099@github.com/chensguo/example.git