webstorm中git克隆项目并提交

git克隆项目并提交

git clone +github中的项目地址

将GitHub中的项目导入到项目中

webstorm中git克隆项目并提交

git status 查看状态

webstorm中git克隆项目并提交

git add .

将没有提交的内容都提交

git commit -m ‘填写提交的内容’

提交的内容必须要写

git push

将修改的内容提交到GitHub中,就完成了项目的提交

推荐:将某个项目提交到GitHub中

两步:
git remote add origin https://github.com/LALA-ZZ/teat.git(这是以个github目录)
git push -u origin master或
webstorm中git克隆项目并提交