This website works better with JavaScript.
Home
Explore
Help
Sign In
wangxinyu2
/
TrainCamp_wangxinyu_BasicLearn
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
1
Wiki
Activity
Browse Source
first_update
tags/v0.0.1
wangxinyu
1 week ago
commit
f2c269b783
3 changed files
with
36 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+23
-0
note/git学习.md
+13
-0
note/tesk.md
BIN
photo/git_tab.png
+ 23
- 0
note/git学习.md
View File
@@ -0,0 +1,23 @@
## Git
- Git的概念
开源的分布式版本控制系统管理
- 三个区域的概念
**工作区**:在电脑中可以看到的目录
**暂存区**:临时存储区域,保留文件快照,提交之前保存在此。
~~~
git add filename # 将单个文件添加到暂存区
git add . # 将工作区中的所有修改添加到暂存区
git status # 查看哪些文件在暂存区中
~~~
**版本库**:每次提交都会保存新的快照,不可变。存放 在.git目录下index文件
- 仓库的概念
- 节点的概念
- 分支的概念
+ 13
- 0
note/tesk.md
View File
@@ -0,0 +1,13 @@
# 练习使用
## 二级标题
### 小功能
#### 代码行
~~~
~~~
#### 表格
BIN
photo/git_tab.png
View File
Before
After
Width:
1280
| Height:
903
| Size:
1.1 MiB
Write
Preview
Loading…
Cancel
Save