打开git bash
$ git config --global user.name "Your Name"
$ git config --global user.email "email@example.com"
然后查看是否配置好
$ git config --global --list
image.png
接下来我们随便创建一个文件夹然后初始化
$ git init
如果想使用全局的用户名的话就什么都不改,如果想使用本地新的只需要重新设置下
$ git config --local user.name "Your Name"
$ git config --local user.email "email@example.com"
随便添加个文件并查看
git add 文件名
git status
image.png
commit
-m 是message
git commit -m 'upload readme'
查看日志
git log
git log --online
git log --online --graph
image.png
修改文件名
git mv 要改的文件名 改后的名字
image.png
接下来我们上传至github
创建仓库
image.png
添加远程仓库
git remote add origin
image.png
推送至github
加上了-u参数,Git不但会把本地的master分支内容推送的远程新的master分支,还会把本地的master分支和远程的master分支关联起来,在以后的推送或者拉取时就可以简化命令。
git push -u origin master
image.png
查看github
image.png
网友评论