Git commands cheat sheet
2024-09-16 13:10:44

Handbook

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# Initialize a new git repository:
git init

# Set configuration values for your settings:
git config --global user.name <your-name>
git config --global user.email <your-email>
git config --global init.defaultBranch main

# Clone a repository:
git clone <repository-url>

# Add a file to the staging area:
git add <file>

# Add all files changes to the staging area:
git add

# Check the unstaged changes:
git diff

# Commit the staged changes:
git commit -m "Message"
git commit --amend --no-edit

# Reset staging area to the last commit:
git reset

# Check the state of the working directory and the staging area:
git status

# Remove a file from the index and working directory:
git rm <file>

# List the commit history:
git log

# Show changelog with graph
git log --graph

# Check the metadata and content changes of the commit:
git show <commit-hash>

# Lists all local and remote branches:
git branch -a

# Create a new branch:
git branch <branch-name>

# Rename the current branch:
git branch -m <new-branch-name>

# Delete a branch:
git branch -d <branch-name>

# Switch to another branch:
git checkout <branch-name>

# Create and switch to a new branch
git checkout -b <branch-name>

# Merge specified branch into the current branch:
git merge <branch-name>

# Create a new connection to a remote repository:
git remote add <name> <repository-url>

# Push the committed changes to a remote repository:
git push <remote> <branch>

# Download the content from a remote repository:
git pull <remote>

# Cleanup unnecessary files and optimize the local repository:
git gc

# Temporarily remove uncommitted changes and save them for later use:
git stash

# Reapply previously stashed changes
git stash apply

# Fetch all remote branches, delete branch if upstream is gone
git fetch --all --prune

Errors

Fix “ssh: connect to host github.com port 22: Connection timed out”

try to create or update ~/.ssh/config as followed:

1
2
3
Host github.com
Hostname ssh.github.com
Port 443

Then, run the command ssh -T git@github.com to confirm if the issue is fixed.

Prev
2024-09-16 13:10:44
Next