标签:初始化 commit push remote bsp git add 内容 文件名 ***
1.git init
使用 git init 命令 ,初始化一个git 本地仓库此时会在本地创建一个 .git 的文件夹,一般这个文件夹是隐藏的
2.git remote add origin http://*****************************
使用git remote add origin https......(刚刚复制的路径名称) ,添加远程仓库到本地
3.git add .
使用git add . (. 表示所有的)或者 git add + 文件名 ,将文件保存到缓存区
4.git commit -m ‘First‘
使用git commit -m “新添加的文件内容描述” ,添加文件描述
5.git push -u origin --all
执形 git push origin master,提交代码
标签:初始化 commit push remote bsp git add 内容 文件名 ***
原文地址:https://www.cnblogs.com/Zed-D/p/12956029.html