git 提交步骤
- 
创建文件夹
mkdir b10 - 
切入文件夹
cd b10 - 
配置全局
git config --global user.name "---"
git config --global user.email "imock@sina.com" - 
仓库的初始化
git init - 
新建文件readme.md
touch readme.md - 
添加到本地
git add readme.md - 
提交到本地的缓冲区
git commit -m'注释信息' - 
检查远程仓库地址
git remote -v - 
添加远程仓库地址
git remote add origin 码云地址 - 
提交代码到远程仓库
git push origin master 
11.克隆远程仓库
git clone‘码云仓库网址’
                    
                
                
            
        
浙公网安备 33010602011771号