Git搭建远程仓库


1.在git hub中创建项目

Git搭建远程仓库

2.创建好以后你会发现一个这样的页面

Git搭建远程仓库
3.安装git版本工具,如果已安装就跳过吧!
4.找到指定的项目文件夹,那个文件夹都可以,右键点击Git bash here
1.git init
2.git add .
3.git commit -m “第一次测试提交”
4.git remote add origin https://github.com/zhihuatech/Test.git
5.git push -u origin master
这样就好了,可疑查看你远程仓库提交的文件了。

相关文章:

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