GIT操纵

简易的命令行入门教程:

Git 全局设置:

git config --global user.name "XXX"
git config --global user.email "XXX@XX.com"

创建 git 仓库:

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

已有仓库?

cd existing_git_repo
git remote add origin https://gitee.com/weimaoer/flysnow_2ull.git
git push -u origin master
posted @ 2019-04-16 10:11  飞雪飘鸿  阅读(115)  评论(0编辑  收藏  举报
https://damo.alibaba.com/ https://tianchi.aliyun.com/course?spm=5176.21206777.J_3941670930.5.87dc17c9BZNvLL