git初始化及其使用
git使用
一、 git初始化本地仓库
1、git init 本地仓库初始化
2、git add 添加本地仓库
3、git commit -m ‘first commit’ 第一次提交
git config —global user.name “zhuyuseng”
git config —global user.email “zhuyuseng@aliyun.com”
git remote add origin https://gitee.com/bnkt/22.git
仓库的自我介绍: 将本地与远程仓库进行关联git push —set-upstream origin master
以后, 只要用以下指令直接提交git push
二、日常使用方法https://note.youdao.com/s/GnILM5GE
【感谢龙石为本站提供信息共享平台 http://www.longshidata.com/pages/exchange.html】