默认已安装并配置git工具
在项目文件夹下使用终端(cmd,powershell等)键入指令
初始化
git init
关联远程仓库
git remote add origin https://github.com/your-repo-address
从此处获取http地址
拉去远程主分支
git pull origin master
对代码更改后上传
新建分支
假设分支名为dexion 你上传时请命名为其他 例如 Wang
git branch dexion
git checkout dexion
上传分支
git add.
git commit -m "你的评论"
git push origin dexion
网友评论