Git 创建操作
Git 常用操作
远程测试仓库为Github
本地Git版本:git version 2.43.0
配置Git的config
设置全局
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"
设置当前目录下
git config user.name "Your Name"
git config user.email "your.email@example.com"
设置网络代理
已经使用了网络代理,导致无法正常访问Github地址
--global
可以不添加
git config --global http.proxy http://127.0.0.1:your vpn prot
git config --global https.proxy http://127.0.0.1:your vpn prot
echo "HTTP and HTTPS proxy set to http://127.0.0.1:your vpn prot for Git"
查看当前config
全局
git config --global --list
当前
git config --list
新项目上传Github
配置个人信息
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"
初始化项目的Git仓库
README.md
说明文件
echo "# ceshi" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
# https://xxxxx.git 是你的github项目地址
git remote add origin https://xxxxx.git
git push -u origin main
设置网络代理
已经使用了网络代理,导致无法正常访问Github地址
git config --global http.proxy http://127.0.0.1:your vpn prot
git config --global https.proxy http://127.0.0.1:your vpn prot
echo "HTTP and HTTPS proxy set to http://127.0.0.1:your vpn prot for Git"
本文是原创文章,采用 CC BY-NC-ND 4.0 协议,完整转载请注明来自 David
评论
匿名评论
隐私政策
你无需删除空行,直接评论以获取最佳展示效果