git 是一个强大的版本控制系统,用于跨多个用户管理代码并跟踪不同版本之间的更改。安装:从以下路径下载并安装githttps://git-scm.com/download/win登录后复制安装后,git 可以通过各种命令用作版本控制系统。您可以为计算机上的特定文件夹配置 git,从而允许您管理对现有文件的所有更改以及在该文件夹中添加新文件基本命令:1. git init:登录后复制这将在当前目录中初始化新的存储库。这还会创建 .git 目录并存储所有版本控制信息。2. git config:登录后复制git config --global user.name "ranjith "登录后复制git config --global user.mail "[email protected]"登录后复制3. git status登录后复制显示工作区域的当前状态,例如已暂存、未跟踪和未暂存。4. git add登录后复制将更改从工作目录添加到暂存区域,准备提交。to add specific file: git add "filename.py"登录后复制to add all changes git add .登录后复制5. git commit登录后复制git commit -m "<message>"</message>登录后复制使用描述性消息提交分阶段更改6. git log登录后复制显示存储库的提交历史列表。它将显示提交 id、作者、日期和提交更改创建分支git branch <branch_name> - to create branch</branch_name>登录后复制git checkout <branch_name> - to switch to the new branch</branch_name>登录后复制git branch -b <branch_name></branch_name>登录后复制创建并切换到分支gitbranch - 查看所有分支(当前分支将用星号突出显示)merge a branch:登录后复制一旦完成了一个分支上的工作并希望将其集成到另一个分支(例如 master)中,就需要进行合并。it means all the changes we have made in <branch_name> will be merged with master branch.first, switch to the branch you want to merge into: git checkout master</branch_name>登录后复制then, use git merge <branch_name> to merge your branch.</branch_name>登录后复制deleting branchonce the code changes in <branch_name> merged into <master> branch, we might need to delete branch.</master></branch_name>登录后复制use git branch -d <branch_name> to delete branch</branch_name>登录后复制 以上就是git的详细内容,更多请关注我的其它相关文章!
标签:git,登录,merge,add,复制,branch From: https://www.cnblogs.com/aow054/p/18423175