git常用命令和如何在GitHub上上传本地项目
ChrisXie Lv5

一,Git 常用命令

1. 创建一个新的仓库

1
2
3
4
5
6
7
8
9

# 在当前目录新建一个 Git 仓库
$ git init

# 新建一个目录,并将其初始化为 Git 仓库
$ git init [project-name]

# 从远程下载一个仓库
$ git clone [url]

2. 配置

Git 的配置文件是 .gitconfig,可以放在用户的主目录(全局配置)下或项目目录下(项目配置)。

1
2
3
4
5
6
7
8
9
# 显示当前的 Git 配置
$ git config --list

# 编辑 Git 配置
$ git config -e [--global]

# 设置用来提交代码的用户信息
$ git config [--global] user.name "[name]"
$ git config [--global] user.email "[email address]"

3. 添加/删除文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 将指定文件添加到暂存区中
$ git add [file1] [file2] ...

# 将指定目录添加到暂存区中,包括子目录
$ git add [dir]

# 将当前目录中的所有文件添加到暂存区中
$ git add .

# 在添加每个更改之前都进行确认
# 对于同一个文件的多个更改,建议分开提交
$ git add -p

# 将指定文件从工作区删除,并将本次删除添加到暂存区
$ git rm [file1] [file2] ...

# 停止追踪指定的文件,不会删除文件
$ git rm --cached [file]

# 对指定文件进行重命名,并添加到暂存区中
$ git mv [file-original] [file-renamed]

4. 代码提交相关

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 将暂存区中的文件提交到代码仓库
$ git commit -m [message]

# 将指定的文件从暂存区中提交到仓库
$ git commit [file1] [file2] ... -m [message]

# 将工作区的更改直接提交到仓库
$ git commit -a

# 提交前展示所有的变动
$ git commit -v

# 使用新提交代替上次提交
# 如果代码没有任何变动,将会用于重写上次提交的提交信息
$ git commit --amend -m [message]

# 重做上次的提交,并将指定的文件包含其中
$ git commit --amend [file1] [file2] ...

5. 分支相关

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
# 列出本地分支
$ git branch

# 列出所有远程分支
$ git branch -r

# 列出本地和远程的所有分支
$ git branch -a

# 新建分支,并留在当前分支
$ git branch [branch-name]

# 新建分支,并切换到新分支
$ git checkout -b [branch]

# 指向某次提交新建分支
$ git branch [branch] [commit]

# 创建一个新分支,并与指定的远程分支建立跟踪关系
$ git branch --track [branch] [remote-branch]

# 切换到指定分支,并更新工作区
$ git checkout [branch-name]

# 切换到上一个分支
$ git checkout -

# 将本地分支与指定的远程分支建立跟踪关系
$ git branch --set-upstream [branch] [remote-branch]

# 合并指定分支与当前分支
$ git merge [branch]

# 将指定的提交合并到本地分支
$ git cherry-pick [commit]

# 删除分支
$ git branch -d [branch-name]

# 删除远程分支
$ git push origin --delete [branch-name]
$ git branch -dr [remote/branch]

6. 标签操作

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
# 列出所有标签
$ git tag

# 在当前提交上创建一个新标签
$ git tag [tag]

# 在指定提交上创建一个新标签
$ git tag [tag] [commit]

# 删除本地标签
$ git tag -d [tag]

# 删除远程标签
$ git push origin :refs/tags/[tagName]

# 查看标签信息
$ git show [tag]

# 提交指定标签
$ git push [remote] [tag]

# 提交所有标签
$ git push [remote] --tags

# 创建一个新分支,指向特定的标签
$ git checkout -b [branch] [tag]

7.查看信息

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
# 显示有变动的文件
$ git status

# 显示当前分支的提交历史
$ git log

# 显示提交历史和每次提交的文件
$ git log --stat

# 指定关键字搜索提交历史
$ git log -S [keyword]

# 显示自某次提交以来的所有更改,一次提交显示一行。
$ git log [tag] HEAD --pretty=format:%s

# 显示自某次提交以来的所有更改,其提交描述必须符合搜索条件。
$ git log [tag] HEAD --grep feature

# 显示指定文件的提交历史
$ git log --follow [file]
$ git whatchanged [file]

# 显示与指定文件相关的每个差异
$ git log -p [file]

# 显示最近 5 次提交
$ git log -5 --pretty --oneline

# 显示所有的提交用户,已提交数目多少排名
$ git shortlog -sn

# 显示指定文件何时被何人修改过
$ git blame [file]

# 显示暂存区和工作区的文件差别
$ git diff

# 显示暂存区和上一次提交的差别
$ git diff --cached [file]

# 显示工作区和当前分支的最近一次提交的差别
$ git diff HEAD

# 显示指定两次提交的差别
$ git diff [first-branch]...[second-branch]

# 显示今天提交了多少代码
$ git diff --shortstat "@{0 day ago}"

# 显示特定提交的提交信息和更改的内容
$ git show [commit]

# 新手某次提交改动了哪些文件
$ git show --name-only [commit]

# 显示某个提交的特定文件的内容
$ git show [commit]:[filename]

# 显示当前分支的最新提交
$ git reflog

8. 远程同步

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 从远程分支下载所有变动
$ git fetch [remote]

# 显示所有远程仓库
$ git remote -v

# 显示某个远程参考的信息
$ git remote show [remote]

# 新建一个远程仓库,并命名
$ git remote add [shortname] [url]

# 检索远程存储库的更改,并与本地分支合并
$ git pull [remote] [branch]

# 将本地分支提交到远程仓库
$ git push [remote] [branch]

# 将当前分支强制提交到远程仓库,即使有冲突存在
$ git push [remote] --force

# 将所有分支提交到远程仓库
$ git push [remote] --all

9. 撤销操作

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
# 将暂存区中的指定文件还原到工作区,保留文件变动
$ git checkout [file]

# 将指定文件从某个提交还原到暂存区和工作区
$ git checkout [commit] [file]

# 将暂存区中的所有文件还原到工作区
$ git checkout .

# 重置暂存区中的指定文件,与先前的提交保持一致,但保持工作空间的变动不变
$ git reset [file]

# 重置暂存区和工作区中的指定文件,并与最近一次提交保持一致,工作空间文件变动不会保留
$ git reset --hard

# 重置暂存区,指向指定的某次提交,工作区的内容不会被覆盖
$ git reset [commit]

# 重置暂存区和工作区中的指定文件,并与指定的某次提交保持一致,工作区的内容会被覆盖
$ git reset --hard [commit]

# 将 HEAD 重置为指定的某次提交,保持暂存区和工作区的内容不变
$ git reset --keep [commit]

# 新建新提交以撤消指定的提交
# All changes of the latter will be offset by the former and applied to the current branch.
$ git revert [commit]

# 暂存为提交的变动,并在稍后移动它们
$ git stash
$ git stash pop

10. 其他

1
2
3
4
5
6
7
git add . //添加文件到本地仓库

git commit -m "描述信息" //添加文件描述信息

git pull origin master // 更新本地版本库

git push -u origin master //把本地仓库推送至远程仓库

二,如何在GitHub上上传本地项目

1.创建一个新的repository

在GitHub账户中创建一个repository,这里的repository就是指你的项目存储库,它可以保存你的代码、文档、图片等。在repository中,我们可以创建不同的分支和合并不同的分支,管理和控制项目版本和更新,不断对项目进行改进和优化。

2.在本地创建项目

首先,你需要在本地计算机上创建项目,这个项目可以是你自己创建的,也可以是其他人的,只要你要上传到GitHub上就可以。在本地项目中,你需要先创建一个.git文件,这个文件是Git用来跟踪文件和文件夹的版本控制信息,我们可以通过以下命令在本地项目中创建.git文件:

1
git init

3.将本地项目与GitHub repository关联

在本地项目中,你需要将它关联到你在GitHub上创建的repository中。你需要在GitHub repository中找到“Clone or download”按钮,点击它可以获取GitHub repository的URL。在本地项目中,输入以下命令将GitHub repository与本地项目关联:

1
git remote add origin https://github.com/jianhuangXie/XXX.git

4.将本地项目上传到GitHub

在本地项目中完成代码的编写和修改后,准备将代码上传到GitHub上:

首先,在本地项目中使用以下命令将所有文件提交到Git:

1
git add .

注意:”.”表示添加的是所有文件,你可以使用具体的文件名来添加单个文件。

接着,使用以下命令将提交的文件提交到本地Git仓库:

1
git commit -m "提交描述"

注意:“提交描述”是本次提交的描述信息,可以写明这次提交的修改或新增内容。

最后,使用以下命令将本地Git仓库中的代码推送到GitHub repository中:

1
git push -u origin main

注意:“master”是主分支的名称,你可以使用其他名称,具体取决于你创建的分支名称

本地更新到github

1
2
3
4
cd path/to/your/project       # 切换到你的项目目录
git add . # 添加所有更改过的文件到暂存区
git commit -m "Your message" # 提交更改,并附上消息
git push origin main # 推送本地的main分支到远程GitHub仓库

报错

error: src refspec main does not match any
error: failed to push some refs to ‘https://github.com/jianhuangXie/TutoPC.git

用 git add * 重新提交一遍

还有一种可能是如: /g/jianhuangXie/TutoPC (master)
不是在main主干上
用 git branch -m master main 然后 git push -u origin main 提交

$ git push -u origin main
fatal: unable to access ‘https://github.com/jianhuangXie/TutoPC.git/‘: Recv failure: Connection was reset

该方法也是最常见的方法,那就是在终端执行:
git config –global –unset http.proxy
git config –global –unset https.proxy

 评论
相关文章
标签云 更多