当前位置: 首页 > 工具软件 > github-clone > 使用案例 >

从github上clone,修改然后再上传 和直接将本地项目上传至github和

梁锋
2023-12-01

两种方式上传文件到github上的repository:

1. 从github上clone,修改然后再上传 

$git clone  https://github.com/xxx/test.git

$cd test

$touch a

$git add .

$git commit -m "first commit"

$git push

2. 直接将本地项目上传至github和

1. 在github上新建一个repository。

2. 启动gitbash,切换到项目所在目录,执行

#git init

#git add .

#git commit

#git remote //查看现有remote origin

#git remote rm origin //如果有绑定远程git hub 上repository,并且不是自己期望的删除

#git remote add origin https://github.com/xxx/yyy.git

#git push -f origin main //使用-f参数,如果远程repository非空, main远程repository是分支的名字。2020年10月份之后,github将缺省主分支名字从master改成main

 

 类似资料: