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
这样就好了,可疑查看你远程仓库提交的文件了。

相关文章: