git 上传

git config --global user.name "蓦然浅笑"

git config --global user.email "[email protected]"

创建 git 仓库:

mkdir easycd easygit inittouch README.mdgit add README.mdgit commit -m "first commit"git remote add origin https://gitee.com/zoubiao/easy.gitgit push -u origin master

已有项目?

cd existing_git_repogit remote add origin https://gitee.com/zoubiao/easy.gitgit push -u origin master

你可能感兴趣的:(git 上传)