git基本操作

简易的命令行入门教程:

Git 全局设置:

git config --global user.name "初心"
git config --global user.email "137647337@qq.com"
创建 git 仓库:

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

cd existing_git_repo
git remote add origin https://gitee.com/itzhangxuhui/test1.git
git push -u origin master

posted @ 2021-12-26 14:35  公子初心  阅读(39)  评论(0编辑  收藏  举报