本文共 1394 字,大约阅读时间需要 4 分钟。
一些小demo
。而后,可能因为一些需要(比如,写的确实还不错
),想把自己在电脑上的一些小demo
,上传到 github
上,方便以后的管理、更新、迭代。1. 有一个 github 账号2. 电脑本地有 git 环境3. 已经配置好了 git config 内容
在自己的github帐号上,新建一个仓库
cd
把你要上传的demo文件夹直接拖过来
git init
git add .
git commit -m "xxxxxxxxxxxx"
git remote add origin https://自己的仓库 url 地址(上面说到的,需要复制后续用到的)
git push -u origin master
git push -u origin master
这行执行后,会出现一点问题。git push -u origin masterTo git@github.com:xxx/xxx.git ! [rejected] master -> master (fetch first)error: failed to push some refs to 'git@github.com:xxx/xxx.git'hint: Updates were rejected because the remote contains work that you dohint: not have locally. This is usually caused by another repository pushinghint: to the same ref. You may want to first integrate the remote changeshint: (e.g., 'git pull ...') before pushing again.hint: See the 'Note about fast-forwards' in 'git push --help' for details.
$ git pull --rebase origin master // 先把远程服务器 github 上面的文件拉下来$ git push -u origin master
在你的终端,cd 到这个文件夹下,git log 查看日志,然后,git pull 拉取代码。即README文件。
转载地址:http://fgfzo.baihongyu.com/