感觉是时候管理一下自己的代码了,就用用git吧。
1、下载安装windows版的git
https://git-scm.com/downloads
安装完成任意目录下右键就会有git相关操作了
2、本地新建代码库,和github上新建的代码库关联
2.1、github上代码库地址为:https://xxxxx.git
2.2、设置用户名,邮箱:
$ git config --global user.name "xxx"
$ git config --global user.email "xxx"
2.2、本地新建代码库:
$ mkdir githome2
$ cd githome2
$ git init
2.3、新建一个测试文件, test.txt, 并查看文件状态
$ vi test.txt
$ git status
提示:nothing added to commit but untracked files present (use "git add" to track)
2.4、add, commit 到本地资源库
$ git add test.txt
$ git commit test.txt
2.5、上传到远程github代码库
$ git push -u origin master
fatal: unable to access 'xxxxxx.git/': Couldn't resolve host 'github.com'
2.5.1、报错:本地用了代理,需要配置代理
$ git config --global http.proxy http://XXX:port
$ git config --global https.proxy http://XXX:port
$ git config --global http.sslverify false
2.5.2、再次尝试,又报错了:fatal: remote origin already exists.
本地已经关联过了,删掉重新关联一下吧
$ git remote rm origin
$ git remote add origin https://github.com/xxx.git
$ git push -u origin master
2.6、按照提示,输入用户名,密码即可,最后可以在github上查看了。