我这里是在win下安装了个git bash,因为趴在床上写的,没安装linux。
1. 登录后点击 create a repository
2.输入仓库(项目)名
这样就创建了一个respository,创建后会自动跳转到该项目页面:
https://github.com/xiangpingli/test
3.使用git命令导出
tanglin@tanglin-PC MINGW32 ~
$ git clone https://github.com/xiangpingli/test
Cloning into 'test'...
warning: You appear to have cloned an empty repository.
Checking connectivity... done.
4. 添加一个hello文件
tanglin@tanglin-PC MINGW32 ~
$ cd test/
tanglin@tanglin-PC MINGW32 ~/test (master)
$ ls
hello
tanglin@tanglin-PC MINGW32 ~/test (master)
$ git add hello ./
5. 提交修改
上传:
首先配置名字:tanglin@tanglin-PC MINGW32 ~/test (master)
$ git config --global user.name "xiangpingli"
tanglin@tanglin-PC MINGW32 ~/test (master)
tanglin@tanglin-PC MINGW32 ~/test (master)
$ git config --global user.email "[email protected]"
设定邮箱
然后commit修改信息:
tanglin@tanglin-PC MINGW32 ~/test (master)
$ git commit -m "add a file"
[master (root-commit) 373fbb3] add a file
1 file changed, 0 insertions(+), 0 deletions(-)
create mode 100644 hello
执行git push提交:
$ git push
6. 查看提交后的网页
此时在github的项目页面会出现刚才提交的文件和你的提交记录