初次将项目推到github的命令
程序员文章站
2022-03-09 19:35:38
...
-
将项目推到gitHub之前,你得先有个github,注册方法我这里就不赘述了,github官网传送门
-
第一次将项目推送到github
git init // 初始化git
git add . // 将工作区文件添加到暂存区
git commit -m "first commit" // 将暂存区里的改动给提交到本地的版本库
git remote add origin https://github.com/xxxxxx/File-processing.git // 关联远程仓库,每个人的都不一样
git push -u origin master // 推送到远程