Skip to content

Commit cb9bede

Browse files
committed
git 사용
1 parent a3fab2e commit cb9bede

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed

example/git 사용.ipynb

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"metadata": {},
6+
"source": [
7+
"git 시작하기\n",
8+
"```bash\n",
9+
"git init\n",
10+
"```\n",
11+
"git 에서 파일추가\n",
12+
"```bash\n",
13+
"git add --all\n",
14+
"git commit -m \"첫 번째 commit\"\n",
15+
"```\n",
16+
"\n",
17+
"github에 추가\n",
18+
"```bash\n",
19+
"git remote add origin https://github.com/user/repo.git\n",
20+
"git push origin master\n",
21+
"```\n",
22+
"\n",
23+
"github에서 받기\n",
24+
"```bash\n",
25+
"git clone https://github.com/user/repo.git\n",
26+
"```"
27+
]
28+
}
29+
],
30+
"metadata": {
31+
"anaconda-cloud": {},
32+
"kernelspec": {
33+
"display_name": "Python [default]",
34+
"language": "python",
35+
"name": "python3"
36+
},
37+
"language_info": {
38+
"codemirror_mode": {
39+
"name": "ipython",
40+
"version": 3
41+
},
42+
"file_extension": ".py",
43+
"mimetype": "text/x-python",
44+
"name": "python",
45+
"nbconvert_exporter": "python",
46+
"pygments_lexer": "ipython3",
47+
"version": "3.5.2"
48+
}
49+
},
50+
"nbformat": 4,
51+
"nbformat_minor": 1
52+
}

0 commit comments

Comments
 (0)