File tree Expand file tree Collapse file tree 2 files changed +12
-6
lines changed
Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 88
99Start:
1010 - lab: [ ![ Binder] ( https://mybinder.org/badge_logo.svg )] ( https://mybinder.org/v2/gh/RasmussenLab/git-tutorial/master?urlpath=lab )
11- - vscode: [ ![ Binder] ( https://mybinder.org/badge_logo.svg )] ( https://mybinder.org/v2/gh/RasmussenLab/git-tutorial/master?urlpath=vscode )
11+ - vscode: [ ![ Binder] ( https://mybinder.org/badge_logo.svg )] ( https://mybinder.org/v2/gh/RasmussenLab/git-tutorial/master?urlpath=vscode?folder=/home/jovyan/examples )
1212
1313
1414## Explore
@@ -20,14 +20,19 @@ You will need to setup your git email and user-name
2020git config --global user.email
" [email protected] " 2121git config --global user.name " Your Name"
2222```
23- > could be added to local config
23+ > could be added to local config using ` git config user... `
2424
25- - create a folder with an empty repository
25+ ### Steps
26+
27+ - create a folder with an empty repository (default ` examples ` )
28+ - ` git init ` in console to initialize repo
2629- setup user.name and user.email
27- - create branches
28- - etc
30+ - create files, stage them and see what files are created in ` .git/objects `
31+ - commit files and check ` .git/objects `
32+ - create branches and checkout ` .git/refs ` and ` git/branches ` folder
33+ - look at ` git/HEAD ` (maybe ` git/ORIG_HEAD ` if it exists)
2934
30- > try to add notes to your own fork
35+ > try to create your own fork, and try to lauch it on [ mybinder ] ( https://mybinder.org/ )
3136
3237## Links
3338
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ jupyter lab build
77
88code-server --install-extension ms-python.python
99
10+ pip install jupyterlab-git
1011# Install the VS code proxy
1112pip install -e.
1213
You can’t perform that action at this time.
0 commit comments