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
本文来自博客园,作者:公子初心,转载请注明原文链接:https://www.cnblogs.com/ixuhui/p/15732950.html