简易的Git命令行入门教程


简易的Git命令行入门教程

 

 

Git 全局设置:

git config --global user.name "Nemo_bubu"
git config --global user.email "7398267+nemo_bubu@user.noreply.gitee.com"
创建 git 仓库:

mkdir lianxi2
cd lianxi2
git init 
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://gitee.com/Nemo_bubu/lianxi2.git
git push -u origin "master"
已有仓库?

cd existing_git_repo
git remote add origin https://gitee.com/Nemo_bubu/lianxi2.git
git push -u origin "master"

 

原创文章,作者:sunnyman218,如若转载,请注明出处:https://blog.ytso.com/269110.html

(0)
上一篇 2022年6月20日
下一篇 2022年6月20日

相关推荐

发表回复

登录后才能评论