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克隆项目并提交

相关文章:

  • 2022-01-08
  • 2021-12-22
  • 2022-02-06
  • 2022-12-23
  • 2021-10-18
  • 2022-01-10
  • 2021-03-31
  • 2022-12-23
猜你喜欢
  • 2021-09-27
  • 2022-01-15
  • 2021-04-02
  • 2022-12-23
  • 2021-05-04
  • 2021-05-28
  • 2021-12-03
相关资源
相似解决方案