📅  最后修改于: 2023-12-03 14:41:31.476000             🧑  作者: Mango
Git是一种版本控制工具,适用于各种类型的项目,从小型个人项目到大型企业项目。它可以轻松地跟踪文件的更改、分支管理和协作开发。
Mac和Linux用户:
$ sudo apt-get install git
Windows用户:
从 Git官方网站 下载Git安装程序并运行。按默认设置安装即可。
初始化Git仓库
$ git init
克隆现有的仓库
$ git clone https://github.com/username/repo.git
添加文件到Git仓库
$ git add <filename>
提交文件到Git仓库
$ git commit -m "commit message"
查看仓库的状态
$ git status
查看提交历史
$ git log
创建分支
$ git branch <branchname>
切换分支
$ git checkout <branchname>
合并分支
$ git merge <branchname>
推送到远程仓库
$ git push
设置用户名
$ git config --global user.name "Your Name"
设置用户邮箱
$ git config --global user.email "youremail@example.com"
查看Git配置
$ git config --list
检出特定的提交
$ git checkout <commit hash>
创建合并提交
$ git cherry-pick <commit hash>
撤销提交
$ git revert <commit hash>
删除分支
$ git branch -d <branchname>
取消暂存
$ git reset <filename>
重置分支到指定的提交
$ git reset --hard <commit hash>
通过本教程,您已经了解了Git的基本和高级命令,可以开始使用它来管理您的项目。要获得更多关于Git的详细信息,请查看Git官方文档。
现在,您可以开始使用Git了!