注册
git config --global user.name "韩天任"
git config --global user.email "909611794@qq.com"
mkdir 20191011010
cd 20191011010
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://gitee.com/oldboy-python-full-stack-27/20191011010.git
git push -u origin master
cd existing_git_repo
git remote add origin https://gitee.com/oldboy-python-full-stack-27/20191011010.git
git push -u origin master
上床内容只需要执行3条命令
git add .
将当前文件夹下所有文件添加到缓存
git commit -m ""
commit
-m 提交备注信息
git push -u origin master
origin是别名,master是分支
将缓存区的内容
注意事项:
每周整理一次,导出成pdf并上传到码云
随笔是公开的(推荐)
文章是私有的,只有自己或从链接进入
选项-默认编辑器改成Markdown
原文:https://www.cnblogs.com/mikuku/p/11670861.html