moerjielovecookie

Sawen_Blog

一个普通工科牲的博客网站
x
github
follow
email

git learning

Basic Concepts of Git#

Summary of Git Concepts#

ConceptDescription
WorkspaceThe local code repository where new and modified files are staged for commit
StageA temporary storage area for file modifications, essentially a file (.git/index) that keeps a list of files to be committed
RepositoryThe management repository of Git, where file states are recorded, containing all code versions
Remote RepositoryA dedicated git server providing shared services for multiple users. The local repository pushes code to the remote repository using the ==push== command
Local RepositoryThe version library directly used on the local computer
BranchA branch is a copy separated from the main line, allowing independent operations without interfering with the main line. After repository initialization, there will be a default main branch "master" or "main"
HEADHEAD is like a pointer, pointing to the latest version of the current active branch
CommitTo submit all changes in the stage to the active branch of the current repository
PushTo push the local repository version to the remote repository
PullTo fetch updates from the remote repository to the local repository
FetchTo update from the remote repository, functioning like pull, but without automatic merging
ConflictConflicts arise when multiple users modify the same file and merge in the remote repository, requiring manual resolution
MergeTo merge files with conflicts; Git can automatically merge changes, but files that cannot be automatically handled need manual intervention
TagA tag refers to the state of a specific branch at a particular point in time, understood as an alias for commit records, commonly used to mark versions.
main/masterThe default main branch of the repository
origin/mainRepresents the main branch of the remote repository

Workspace/Stage/Repository#

image

  • The area marked as objects in the image is the Git object library, located in the ".git/objects" directory, which contains various created objects and content.
  • When executing the git add command on modified/new files in the workspace, the directory tree of the stage is updated, and the content of the modified/new files in the workspace is written into a new object in objects, with the object's ID recorded in the stage's file index.
  • When executing git commit, the directory tree of the stage is written into objects, updating the main branch.
  • When executing the git reset HEAD command, the directory tree of the stage will be rewritten, replaced by the directory tree pointed to by the master branch, but the workspace remains unaffected.
  • When executing git rm --cached “file” command, the file is directly removed from the stage, with no changes made to the workspace.

Workspace#

Project files on the local computer.

Stage#

The stage is a temporary storage area that contains snapshots of files to be committed to the version library.
Common commands

git add filename       # Add a single file to the stage
git add .              # Add all modifications in the workspace to the stage
git status             # Check which files are in the stage

Repository#

The repository contains all version history records of the project. Each commit creates a new snapshot in the repository, which is immutable, ensuring the complete history of the project.
Common commands

git commit -m "Commit message"   # Commit changes from the stage to the local repository
git log                          # View commit history
git diff                         # View differences between the workspace and the stage
git diff --cached                # View differences between the stage and the last commit

Relationships among the three#

  • Workspace -> Stage
git add
  • Stage -> Repository
git commit -m "Commit message"
  • Repository -> Remote Repository
git push origin branch-name
  • Remote Repository -> Local Repository
git pull origin branch-name
# or
git fetch origin branch-name
git merge origin/branch-name

Git Workflow#

|420

1. Clone the Repository#

If you want to participate in an existing project, you first need to clone the remote repository to your local machine:

git clone https://github.com/username/repo.git
cd repo

2. Create a New Branch#

To avoid developing directly on the main or master branch, it is common to create a new branch:

git checkout -b new-feature

3. Working Directory#

Edit code, add new files, or delete unnecessary files in the working directory.

4. Stage Files#

Add modified files to the stage for the next commit operation:

git add filename

Or add all modified files

git add .

5. Commit Changes#

Commit changes from the stage to the local repository and add a commit message:

git commit -m "Add new feature"

Connect to the remote repository

git remote add origin [[email protected]]

6. Pull the Latest Changes#

Before pushing local changes, it is best to pull the latest changes from the remote repository to avoid conflicts:

git pull origin main

Or if working on a new branch

git pull origin new-feature

7. Push Changes#

Push local commits to the remote repository:

git push origin new-feature

8. Delete Branch#

If the new feature branch is no longer needed, you can delete it:

git branch -d new-feature

Or delete the branch from the remote repository:

git push origin --delete new-feature

Git Commands#

image

Git Branches#

The interface of the Git repository after forking looks like this:
|405
You can see that each branch runs parallel to each other, and only when certain projects are completed will they be merged into the main branch.
So what is the use of branches? When planning to develop a new feature, if 50% is completed on the first day and directly submitted to the master branch, it may prevent others from developing. If everything is written and then submitted, it might accidentally lose previous progress. This is where the superiority of branches comes into play. We can create a branch that belongs to us and is invisible to others, where developing and committing code will not affect others, allowing for free operations, and once development is complete, it can be merged into the master branch all at once.

Common Git Branch Commands#

git branch # List all local branches

git branch -r # List all remote branches

git branch -a # List all local and remote branches

git branch [new-branch-name] # Create a new branch but stay on the current branch

git checkout -b [new-branch-name] # Create a new branch and switch to it

git branch --track [branch] [remote-branch] # Create a new branch and set up tracking with the specified remote branch

git checkout [new-branch-name] # Switch to the specified branch and update the working directory

git merge [branch] # Merge the specified branch into the current branch

git branch -d [branch] # Delete the branch

git push origin --delete [branch] # Delete the remote branch
Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.