码云 简易的命令行入门教程:

简易的命令行入门教程:

Git 全局设置:

git config --global user.name "克开"
git config --global user.email "[email protected]"

创建 git 仓库:

mkdir dev3
cd dev3
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://gitee.com/az44yao/dev3.git
git push -u origin master

已有仓库?

cd existing_git_repo
git remote add origin https://gitee.com/az44yao/dev3.git
git push -u origin master
发布了455 篇原创文章 · 获赞 77 · 访问量 131万+

猜你喜欢

转载自blog.csdn.net/az44yao/article/details/100551276