Git常用基本指令学习

以下是一些Git中常用的基本指令:

  1. git init:
    初始化一个新的Git仓库。在项目目录中执行该命令,会创建一个名为.git的子目录,用于存储版本历史和配置信息。

    git init
    
  2. git clone:
    从远程仓库克隆代码到本地。

    git clone <repository_url>
    
  3. git add:
    将文件或目录的变更添加到暂存区。

    git add <file_or_directory>
    
  4. git commit:
    提交暂存区的变更到本地仓库。

    git commit -m "Commit message"
    
  5. git status:
    查看工作区、暂存区和本地仓库的状态。

    git status
    
  6. git log:
    查看提交历史。

    git log
    
  7. git pull:
    从远程仓库拉取最新代码。

    git pull origin <branch_name>
    
  8. git push:
    推送本地代码到远程仓库。

    git push origin <branch_name>
    
  9. git branch:
    查看、创建或删除分支。

    # 查看分支
    git branch
    
    # 创建分支
    git branch <branch_name>
    
    # 删除分支
    git branch -d <branch_name>
    
  10. git merge:
    合并分支。

    # 切换到目标分支
    git checkout <target_branch>
    
    # 合并指定分支到当前分支
    git merge <source_branch>
    
  11. git diff:
    查看工作区和暂存区或者不同提交之间的代码差异。

    # 查看工作区和暂存区的差异
    git diff
    
    # 查看暂存区和最新提交之间的差异
    git diff --staged
    
    # 查看两次提交之间的差异
    git diff <commit_hash1> <commit_hash2>
    
  12. git remote:
    管理远程仓库。

    # 查看远程仓库信息
    git remote -v
    
    # 添加远程仓库
    git remote add <remote_name> <repository_url>
    
    # 删除远程仓库
    git remote rm <remote_name>
    

这是Git中的一部分常用指令。Git提供了丰富的功能,可以通过 git --help 了解更多详细信息。

你可能感兴趣的:(Git学习,git,学习)