首先在要提交的代码里面进行git init初始化创建本地仓库。
然后git add .添加所有的文件到暂存区中。
使用git commit -m "添加说明 " 提交代码到本地的仓库中。
在github上面建立自己的仓库名称。
然后给本地的仓库添加远程的仓库地址。
git remote add origin https://https://github.com/supermanxkq/datepickerTest
使用git remote -v 查看远程仓库是否已经添加成功。
git push origin master进行推送即可。
PS:
git无法pull仓库refusing to merge unrelated histories
git pull origin master ----allow-unrelated-histories
--从github上面拉取代码
git pull origin master
--查看所有的分支信息
git branch --all
-----------------------------------以下是阿里云的教程---------------------------
命令行指令
Git 全局设置
git config --global user.name "23423434343434" git config --global user.email "23423434343434@qq.com"
创建新版本库
git clone https://xxxxx.git cd xxxxx touch README.md git add README.md git commit -m "add README" git push -u origin master
已存在的文件夹或 Git 仓库
cd existing_folder git init git remote add origin https://xxxx.git git add . git commit git push -u origin master