Java教程

github项目初始化

本文主要是介绍github项目初始化,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
git init

git add .

git commit -m "备注信息"

连接到远程仓库

git remote add origin 你的远程仓库地址

将项目推送到远程仓库

git push -u origin master

解决分支不能提pull request问题

git pull origin main --allow-unrelated-histories

注意 github创建的项目默认主分支已经是main而不是master了

这篇关于github项目初始化的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!