Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
aimerneige committed Oct 30, 2020
1 parent cdbd732 commit 196c679
Show file tree
Hide file tree
Showing 3 changed files with 85 additions and 2 deletions.
Binary file added image/github_clone.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added image/github_new.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
87 changes: 85 additions & 2 deletions main.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ footer: "**AimerNeige**"

# Git 的安装

### Git 官网: https://git-scm.com/
### Git 官网: <https://git-scm.com/>

#### **Windows** 用户执行官网提供的安装包,按照默认的配置,直接狂按下一步就可以了。

Expand Down Expand Up @@ -153,6 +153,89 @@ git commit -m "your message here"

---

# GitHub 的注册

### GitHub 官网 <https://github.com/>

进入官网后选择 `#` 来注册一个账号

---

# 创建仓库

### 登陆后在主页点击绿色的 `New` 即可创建一个仓库

你可以对你的仓库进行一些配置,选择生成一些模板文件。

---

![bg center 80%](image/github_new.png)

---

![bg left:60% 80%](image/github_clone.png)

# Clone

clone 是将服务器上的仓库**复制**到本地

在仓库界面点击 `Code` 选择 HTTPS,点击复制,在终端执行如下 git 指令来 clone

```bash
git clone <url>
```

---

# Push

push 是将本地的修改**推送**到服务器

在本地做了修改后,使用 commit 提交这次更改,然后使用 push 指令将本地的提交推送到服务器。

```bash
git push
```

---

# Pull

pull 是将服务器的修改**拉取**到本地

与 push 相反,如果服务器存在本地没有的更改,就可以使用 pull 指令将服务器端的更改拉取到本地。

```bash
git pull
```

---

# Fork

fork 可以创建一个仓库的分支。

在仓库界面点击右上角 Fork,稍等片刻即可。

你只能 fork 别人的仓库,fork 后的仓库和原仓库完全相同,并且你拥有对仓库的所有权限,你可以进行,但是你的修改对原仓库没有任何影响。

---

# Pull Request

pull request 是合并请求,是指向发起一个请求请求将某一个分支仓库的某些修改合并到主仓库。

在仓库界面点击 Pull requests 然后点击绿色的 New pull request 即可发起一个 Pull Request

---

![bg left:40% 80%](image/logo/androidlab-logo.jpg)

# Android Lab
# NUC Android Lab

本演示文档使用 [Marp](https://marp.app/) 构建

项目地址\
<https://github.com/AimerNeige/marp_git-github>

你可以尝试向这个仓库发送一个 pull request 来完善 README 以练习

0 comments on commit 196c679

Please # to comment.