Git工具提交github.com
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git工具提交github.com相关的知识,希望对你有一定的参考价值。
打开 Git Bash,开始键入各种配置信息:
git config --global user.name "You Name" git config --global user.email [email protected]
在本地创建项目文件,在 Bash 下键入一下代码:
mkdir test cd test git init touch README git add README git commit -m ‘first commit‘ git remote add origin [email protected]:youusername/test.git git push -u origin master
以上是关于Git工具提交github.com的主要内容,如果未能解决你的问题,请参考以下文章