如何使用git工具
- 首先需要下载安坐git工具
- 地址如下:https://git-scm.com/downloads
- 安装完毕之后,就可以进入提供的命令行窗口
- 然后就可以使用了,比如:想从 github 克隆项目下来
git clone https://github.com/nf147/nf147.github.io
在项目里添加、修改一系列文件
notepad index.html....
如果要查看项目下的文件修改情况
git status
如果要将修改保存,并同步到服务器,分三步:
git add .
git add -f '指定那个文件'
git commit -m '我是注释信息'
git push
当然,如果是第一次使用,可能需要先告诉 git 工具你是谁,执行下面两条命令
git config --global user.email "你的邮箱地址"
git config --global user.name "你的名字。这个随便填,只是为了方便git区分不同用户"
后续,如果想将服务器的代码同步到本地
git pull / pull 拉 push 推
查看历次修改历史
git log