-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHowto.txt
More file actions
40 lines (26 loc) · 969 Bytes
/
Howto.txt
File metadata and controls
40 lines (26 loc) · 969 Bytes
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
git pull origin main
cd E:\Git_page_source && git status
cd E:\Git_page_source && git init
cd E:\Git_page_source && git add .
cd E:\Git_page_source && git commit -m
cd E:\Git_page_source && git remote add origin https://github.com/ndolphin-github/ndolphin-github.github.io.git
cd E:\Git_page_source && git branch -M main
cd E:\Git_page_source && git push -u origin main
# When files are diff:
git fetch origin
git merge origin/main --allow-unrelated-histories
git add .
git commit -m "Merge and setup"
Customize the index.html
cd E:\Git_page_source
git add .
git commit -m "Updated personal information"
git push origin main
# Files to Edit
index.html (Your main welcome page)
about.md (Your detailed bio)
research.md (Details of your projects)
publications.md (A list of your papers)
# Newest edit command:
git add . && git commit -m "Update site content: about page, research page, publications, and first research post
git push -u origin main --force